From 6601cacb757518d0f2259de4eb348ddeb388b42c Mon Sep 17 00:00:00 2001 From: Ross Lagerwall Date: Thu, 13 Nov 2025 14:17:06 +0000 Subject: [PATCH] Order Remote Service menu items consistently The priorities of the Remote Service Configuration menu items are all the same which means the order is not stable - it depends on the order the OS returned the plugin file names during import. Arbitrarily set the priority so that it is consistent: Enable/Disable/Auto Remote Shell Remote Logging (syslog) Signed-off-by: Ross Lagerwall --- plugins-base/XSFeatureRemoteShell.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins-base/XSFeatureRemoteShell.py b/plugins-base/XSFeatureRemoteShell.py index f880139..5486498 100644 --- a/plugins-base/XSFeatureRemoteShell.py +++ b/plugins-base/XSFeatureRemoteShell.py @@ -164,7 +164,7 @@ def Register(self): 'REMOTE_SHELL', # Key of this plugin for replacement, etc. { 'menuname' : 'MENU_REMOTE', - 'menupriority' : 100, + 'menupriority' : 50, 'menutext' : Lang('Enable/Disable/Auto Remote Shell') , 'statusupdatehandler' : self.StatusUpdateHandler, 'activatehandler' : self.ActivateHandler