summaryrefslogtreecommitdiff
path: root/DevTools/ProfileViewer
diff options
context:
space:
mode:
authorEmanuel Sprung <emanuel.sprung@gmail.com>2020-04-18 15:31:19 +0200
committerAndreas Kling <kling@serenityos.org>2020-04-18 18:01:00 +0200
commitbf00e33a048520b3dc00d207bfa567778101a49d (patch)
tree80673146af0c15fa8cf026368ed8a67921a0fa5f /DevTools/ProfileViewer
parentf8e3aa1ad9c238bec9499e6abb5f2b63984b130b (diff)
downloadserenity-bf00e33a048520b3dc00d207bfa567778101a49d.zip
ProfileViewer: Make the invert menu item visible again :^)
Diffstat (limited to 'DevTools/ProfileViewer')
-rw-r--r--DevTools/ProfileViewer/main.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/DevTools/ProfileViewer/main.cpp b/DevTools/ProfileViewer/main.cpp
index d8413dee44..2d966085db 100644
--- a/DevTools/ProfileViewer/main.cpp
+++ b/DevTools/ProfileViewer/main.cpp
@@ -91,6 +91,7 @@ int main(int argc, char** argv)
});
invert_action->set_checkable(true);
invert_action->set_checked(false);
+ view_menu.add_action(invert_action);
auto percent_action = GUI::Action::create("Show percentages", { Mod_Ctrl, Key_P }, [&](auto& action) {
action.set_checked(!action.is_checked());