Added separators to menus.

master
Pacman Ghost 5 years ago
parent 06983b9cb3
commit 6878421bd3
  1. 1
      vasl_templates/main_window.py
  2. 1
      vasl_templates/webapp/static/main.js

@ -74,6 +74,7 @@ class MainWindow( QWidget ):
file_menu.addAction( action )
add_action( "&Settings", self.on_settings )
add_action( "&About", self.on_about )
file_menu.addSeparator()
add_action( "E&xit", self.on_exit )
# set the window geometry

@ -51,6 +51,7 @@ $(document).ready( function () {
separator2: { type: "separator" },
template_pack: { label: "Load template pack", action: on_template_pack },
user_settings: { label: "Settings", action: user_settings },
separator3: { type: "separator" },
show_help: { label: "Help", action: show_help },
} ) ;
// nb: we only show the popmenu on left click (not the normal right-click)

Loading…
Cancel
Save