diff options
author | Andreas Kling <awesomekling@gmail.com> | 2020-01-08 13:14:39 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2020-01-08 13:14:39 +0100 |
commit | 2d75396c94dfa869fd54adf5132da96dada1b961 (patch) | |
tree | 03bf8cea7a6ad70079dd9676611fb328145937f3 /Applications/About | |
parent | 50fa7598065757d65ad6c36395d269b51b4e80c2 (diff) | |
download | serenity-2d75396c94dfa869fd54adf5132da96dada1b961.zip |
About: Focus the button on startup
Diffstat (limited to 'Applications/About')
-rw-r--r-- | Applications/About/main.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Applications/About/main.cpp b/Applications/About/main.cpp index 0683d0293f..51a109308b 100644 --- a/Applications/About/main.cpp +++ b/Applications/About/main.cpp @@ -62,6 +62,7 @@ int main(int argc, char** argv) GApplication::the().quit(0); }; + quit_button->set_focus(true); window->show(); return app.exec(); } |