summaryrefslogtreecommitdiff
path: root/Userland/Applications/Spreadsheet
diff options
context:
space:
mode:
authorMarco Cutecchia <marco.cutecchia@outlook.it>2021-10-29 23:58:28 +0200
committerAli Mohammad Pur <Ali.mpfard@gmail.com>2021-10-31 00:58:05 +0330
commit5f04fb0ece4bac153df7d47c3a57c1d376d5b23c (patch)
tree9fe7d1773244c90ca54c0471ff9d11edecd7b13f /Userland/Applications/Spreadsheet
parent2cbcb99ec75e65545167e551af7b9390020204ec (diff)
downloadserenity-5f04fb0ece4bac153df7d47c3a57c1d376d5b23c.zip
Spreadsheet: Make the 'Help' window accessory
Diffstat (limited to 'Userland/Applications/Spreadsheet')
-rw-r--r--Userland/Applications/Spreadsheet/HelpWindow.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Applications/Spreadsheet/HelpWindow.cpp b/Userland/Applications/Spreadsheet/HelpWindow.cpp
index 277a915f1b..e38fdb2d75 100644
--- a/Userland/Applications/Spreadsheet/HelpWindow.cpp
+++ b/Userland/Applications/Spreadsheet/HelpWindow.cpp
@@ -64,6 +64,7 @@ HelpWindow::HelpWindow(GUI::Window* parent)
resize(530, 365);
set_title("Spreadsheet Functions Help");
set_icon(Gfx::Bitmap::try_load_from_file("/res/icons/16x16/app-help.png"));
+ set_accessory(true);
auto& widget = set_main_widget<GUI::Widget>();
widget.set_layout<GUI::VerticalBoxLayout>();