summaryrefslogtreecommitdiff
path: root/Applications/About
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2020-01-08 13:14:39 +0100
committerAndreas Kling <awesomekling@gmail.com>2020-01-08 13:14:39 +0100
commit2d75396c94dfa869fd54adf5132da96dada1b961 (patch)
tree03bf8cea7a6ad70079dd9676611fb328145937f3 /Applications/About
parent50fa7598065757d65ad6c36395d269b51b4e80c2 (diff)
downloadserenity-2d75396c94dfa869fd54adf5132da96dada1b961.zip
About: Focus the button on startup
Diffstat (limited to 'Applications/About')
-rw-r--r--Applications/About/main.cpp1
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();
}