aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/asciidoc/fluxbox.txt2
-rw-r--r--src/Screen.cc2
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/asciidoc/fluxbox.txt b/doc/asciidoc/fluxbox.txt
index f59add3..058995b 100644
--- a/doc/asciidoc/fluxbox.txt
+++ b/doc/asciidoc/fluxbox.txt
@@ -827,7 +827,7 @@ session.screen0.strftimeFormat: <date>
827 827
828session.screen0.tabs.intitlebar: <boolean> 828session.screen0.tabs.intitlebar: <boolean>
829 This specifies whether tabs should be embedded in the titlebar or placed 829 This specifies whether tabs should be embedded in the titlebar or placed
830 outside the window. Default: False 830 outside the window. Default: True
831 831
832session.screen0.tab.placement: <placement> 832session.screen0.tab.placement: <placement>
833 This specifies where external tabs will appear on the window. Default: 833 This specifies where external tabs will appear on the window. Default:
diff --git a/src/Screen.cc b/src/Screen.cc
index d71b076..b0dc62f 100644
--- a/src/Screen.cc
+++ b/src/Screen.cc
@@ -331,7 +331,7 @@ BScreen::ScreenResource::ScreenResource(FbTk::ResourceManager &rm,
331 clientmenu_use_pixmap(rm, true, scrname+".clientMenu.usePixmap", altscrname+".ClientMenu.UsePixmap"), 331 clientmenu_use_pixmap(rm, true, scrname+".clientMenu.usePixmap", altscrname+".ClientMenu.UsePixmap"),
332 tabs_use_pixmap(rm, true, scrname+".tabs.usePixmap", altscrname+".Tabs.UsePixmap"), 332 tabs_use_pixmap(rm, true, scrname+".tabs.usePixmap", altscrname+".Tabs.UsePixmap"),
333 max_over_tabs(rm, false, scrname+".tabs.maxOver", altscrname+".Tabs.MaxOver"), 333 max_over_tabs(rm, false, scrname+".tabs.maxOver", altscrname+".Tabs.MaxOver"),
334 default_internal_tabs(rm, false /* TODO: autoconf option? */ , scrname+".tabs.intitlebar", altscrname+".Tabs.InTitlebar") { 334 default_internal_tabs(rm, true /* TODO: autoconf option? */ , scrname+".tabs.intitlebar", altscrname+".Tabs.InTitlebar") {
335 335
336 336
337} 337}