Hotfix for starting without arguments

This commit is contained in:
No Time To Play 2024-01-22 18:11:27 +00:00
parent 7fb94ff145
commit 7ff9c3e201
1 changed files with 2 additions and 0 deletions

View File

@ -435,6 +435,8 @@ int main(int argc, char **argv) {
top.window->show();
load_file(argv[1]);
}
} else {
top.window->show();
}
Fl::focus(top.editor);