summaryrefslogtreecommitdiff
path: root/src/Remember.cc
diff options
context:
space:
mode:
authorsimonb <simonb>2006-03-20 11:31:24 (GMT)
committersimonb <simonb>2006-03-20 11:31:24 (GMT)
commitf2d3fff4d4db7677814379139dcec3e31fc68047 (patch)
tree95bd9dc99986104613acc37945895b0812e63801 /src/Remember.cc
parenteba0040373179cc6d34f8ee132209f2fa01c2889 (diff)
downloadfluxbox_lack-f2d3fff4d4db7677814379139dcec3e31fc68047.zip
fluxbox_lack-f2d3fff4d4db7677814379139dcec3e31fc68047.tar.bz2
external tabs
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();