Skip to content

Commit

Permalink
re-order items so checkboxes and bell+keyboard are closer together
Browse files Browse the repository at this point in the history
git-svn-id: https://xpra.org/svn/Xpra/trunk@8174 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed Dec 2, 2014
1 parent e1fab3b commit b3edefc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/xpra/client/gtk_base/gtk_tray_menu_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,10 @@ def set_menu_title(*args):
menu.append(self.make_bellmenuitem())
if self.client.windows_enabled:
menu.append(self.make_cursorsmenuitem())
if not self.client.readonly and self.client.keyboard_helper:
menu.append(self.make_layoutsmenuitem())
if self.client.windows_enabled and not self.client.readonly:
menu.append(self.make_keyboardsyncmenuitem())
menu.append(self.make_notificationsmenuitem())
if not self.client.readonly:
menu.append(self.make_clipboardmenuitem())
Expand All @@ -250,10 +254,6 @@ def set_menu_title(*args):
menu.append(self.make_microphonemenuitem())
if SHOW_COMPRESSION_MENU:
menu.append(self.make_compressionmenu())
if not self.client.readonly and self.client.keyboard_helper:
menu.append(self.make_layoutsmenuitem())
if self.client.windows_enabled and not self.client.readonly:
menu.append(self.make_keyboardsyncmenuitem())
if self.client.windows_enabled:
menu.append(self.make_refreshmenuitem())
menu.append(self.make_raisewindowsmenuitem())
Expand Down

0 comments on commit b3edefc

Please sign in to comment.