فهرست منبع

"fix" for keyboar shortcut weirdness

Billy Barrow 1 سال پیش
والد
کامیت
74efe54f1c
1فایلهای تغییر یافته به همراه3 افزوده شده و 0 حذف شده
  1. 3 0
      src/App.vala

+ 3 - 0
src/App.vala

@@ -10,7 +10,10 @@ namespace Publicate {
         }
         }
 
 
         protected override void activate () {
         protected override void activate () {
+            // Absolutely janky fix for whatever is causing the keyboard shortcuts not to show up in menus
             var window = new ViewerWindow(this);
             var window = new ViewerWindow(this);
+            window.destroy ();
+            window = new ViewerWindow(this);
             add_window (window);
             add_window (window);
             window.present ();
             window.present ();
         }
         }