Преглед на файлове

HackStudio: Restrict the "Go to line" shortcut to the text editor

We don't want Ctrl+L presses to be snatched while we're in the embedded
terminal, for example. :^)
Andreas Kling преди 5 години
родител
ревизия
d1916700ea
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      DevTools/HackStudio/main.cpp

+ 1 - 1
DevTools/HackStudio/main.cpp

@@ -78,7 +78,7 @@ int main(int argc, char** argv)
                 text_editor->set_cursor(line_number, 0);
                 text_editor->set_cursor(line_number, 0);
             }
             }
         }
         }
-    }));
+    }, text_editor));
 
 
     window->show();
     window->show();
     return app.exec();
     return app.exec();