1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-06 12:20:30 +00:00

Implement Shift+F1 as contextual help hotkey for script editor; There's

one bug that when jump to help tab first time, the scroll position is
wrong.
This commit is contained in:
marynate
2014-05-06 17:43:14 +08:00
parent ab76f54196
commit 6c0f3f8d0c
2 changed files with 10 additions and 10 deletions

View File

@@ -133,7 +133,7 @@ class ScriptEditor : public VBoxContainer {
DEBUG_BREAK,
DEBUG_CONTINUE,
DEBUG_SHOW,
HELP_SELECTED,
HELP_CONTEXTUAL,
WINDOW_CLOSE,
WINDOW_MOVE_LEFT,
WINDOW_MOVE_RIGHT,
@@ -187,6 +187,7 @@ class ScriptEditor : public VBoxContainer {
void _breaked(bool p_breaked,bool p_can_debug);
void _show_debugger(bool p_show);
void _update_window_menu();
static ScriptEditor *script_editor;
protected:
void _notification(int p_what);