|
15 | 15 | # pylint: disable=W0603 |
16 | 16 | # pylint: disable=W0123 |
17 | 17 |
|
18 | | - |
19 | 18 | class TagError(Exception): ... |
20 | 19 | class FileExtensionError(Exception): ... |
21 | 20 | class SupaplexStructureError(Exception): ... |
@@ -975,8 +974,9 @@ def quit_level_editor() -> screen.Context: |
975 | 974 | screen.Command('exit', [], quit_app), |
976 | 975 | screen.Command('leave', [], quit_app), |
977 | 976 | screen.Command('logout', [], quit_app), |
978 | | - screen.Command('reload', [], reload_current_screen), |
979 | | - screen.Command('rl', [], reload_current_screen), |
| 977 | + # [!!] bug fix: reload was incorrectly marked as an Anywhere command |
| 978 | + # /-/ screen.Command('reload', [], reload_current_screen), |
| 979 | + # /-/ screen.Command('rl', [], reload_current_screen), |
980 | 980 | screen.Command('web', [], open_repository_on_browser), |
981 | 981 | screen.Command('repo', [], open_repository_on_browser), |
982 | 982 | screen.Command('help', [], get_help), |
@@ -1045,8 +1045,9 @@ def quit_level_editor() -> screen.Context: |
1045 | 1045 | screen.Command('exit', [], quit_level_editor), |
1046 | 1046 | screen.Command('leave', [], quit_level_editor), |
1047 | 1047 | screen.Command('q', [], quit_level_editor), |
1048 | | - screen.Command('reload', [], reload_current_screen), |
1049 | | - screen.Command('rl', [], reload_current_screen), |
| 1048 | + # [!!] bug fix: reload was incorrectly marked as an Anywhere command |
| 1049 | + # /-/ screen.Command('reload', [], reload_current_screen), |
| 1050 | + # /-/ screen.Command('rl', [], reload_current_screen), |
1050 | 1051 | screen.Command('help', [], get_help), |
1051 | 1052 | screen.Command('imlost', [], get_help) |
1052 | 1053 | ] |
|
0 commit comments