diff --git a/Userland/Applications/Spreadsheet/HelpWindow.cpp b/Userland/Applications/Spreadsheet/HelpWindow.cpp index f498527712..298bd2d5bb 100644 --- a/Userland/Applications/Spreadsheet/HelpWindow.cpp +++ b/Userland/Applications/Spreadsheet/HelpWindow.cpp @@ -7,6 +7,7 @@ #include "HelpWindow.h" #include "SpreadsheetWidget.h" #include +#include #include #include #include @@ -45,6 +46,7 @@ public: object.for_each_member([this](auto& name, auto&) { m_keys.append(name); }); + AK::quick_sort(m_keys); invalidate(); }