aboutsummaryrefslogtreecommitdiff
path: root/src/Remember.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/Remember.cc')
-rw-r--r--src/Remember.cc7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/Remember.cc b/src/Remember.cc
index 273bd2a..07487fb 100644
--- a/src/Remember.cc
+++ b/src/Remember.cc
@@ -416,6 +416,7 @@ int Remember::parseApp(ifstream &file, Application &app, string *first_line) {
416 FluxboxWindow::DECORM_TITLEBAR 416 FluxboxWindow::DECORM_TITLEBAR
417 | FluxboxWindow::DECORM_ICONIFY 417 | FluxboxWindow::DECORM_ICONIFY
418 | FluxboxWindow::DECORM_MENU 418 | FluxboxWindow::DECORM_MENU
419 | FluxboxWindow::DECORM_TAB
419 ); 420 );
420 } else if (str_label == "TOOL") { 421 } else if (str_label == "TOOL") {
421 app.rememberDecostate((unsigned int) 422 app.rememberDecostate((unsigned int)
@@ -427,6 +428,12 @@ int Remember::parseApp(ifstream &file, Application &app, string *first_line) {
427 FluxboxWindow::DECORM_BORDER 428 FluxboxWindow::DECORM_BORDER
428 | FluxboxWindow::DECORM_MENU 429 | FluxboxWindow::DECORM_MENU
429 ); 430 );
431 } else if (str_label == "TAB") {
432 app.rememberDecostate((unsigned int)
433 FluxboxWindow::DECORM_BORDER
434 | FluxboxWindow::DECORM_MENU
435 | FluxboxWindow::DECORM_TAB
436 );
430 } else { 437 } else {
431 unsigned int mask; 438 unsigned int mask;
432 const char * str = str_label.c_str(); 439 const char * str = str_label.c_str();