diff options
Diffstat (limited to 'src/FbCommands.cc')
-rw-r--r-- | src/FbCommands.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/FbCommands.cc b/src/FbCommands.cc index fd3f71e..3c69386 100644 --- a/src/FbCommands.cc +++ b/src/FbCommands.cc | |||
@@ -1,5 +1,5 @@ | |||
1 | // FbCommands.cc for Fluxbox | 1 | // FbCommands.cc for Fluxbox |
2 | // Copyright (c) 2003 - 2006 Henrik Kinnunen (fluxgen at fluxbox dot org) | 2 | // Copyright (c) 2003 - 2008 Henrik Kinnunen (fluxgen at fluxbox dot org) |
3 | // | 3 | // |
4 | // Permission is hereby granted, free of charge, to any person obtaining a | 4 | // Permission is hereby granted, free of charge, to any person obtaining a |
5 | // copy of this software and associated documentation files (the "Software"), | 5 | // copy of this software and associated documentation files (the "Software"), |
@@ -340,7 +340,8 @@ void ShowClientMenuCmd::execute() { | |||
340 | m_list.push_back(static_cast<FluxboxWindow *>(*it)); | 340 | m_list.push_back(static_cast<FluxboxWindow *>(*it)); |
341 | } | 341 | } |
342 | 342 | ||
343 | m_menu.reset(new ClientMenu(*screen, m_list, 0)); | 343 | m_menu.reset(new ClientMenu(*screen, m_list, |
344 | false)); // dont listen to list changes | ||
344 | ::showMenu(*screen, *m_menu.get()); | 345 | ::showMenu(*screen, *m_menu.get()); |
345 | } | 346 | } |
346 | 347 | ||