summaryrefslogtreecommitdiff
path: root/src/gui/widgets/window.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/widgets/window.cpp')
-rw-r--r--src/gui/widgets/window.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/gui/widgets/window.cpp b/src/gui/widgets/window.cpp
index 02f6cf35e..5148ec3f5 100644
--- a/src/gui/widgets/window.cpp
+++ b/src/gui/widgets/window.cpp
@@ -142,6 +142,7 @@ Window::Window(const std::string &caption, const bool modal,
mTitleBarHeight += getOption("titlebarHeightRelative");
setPalette(getOption("palette"));
childPalette = getOption("childPalette");
+ mShowTitle = getOptionBool("showTitle", true);
}
}
@@ -1219,11 +1220,11 @@ int Window::getOption(const std::string &name, const int def) const
return def;
}
-bool Window::getOptionBool(const std::string &name) const
+bool Window::getOptionBool(const std::string &name, const bool def) const
{
if (mSkin)
- return mSkin->getOption(name) != 0;
- return 0;
+ return mSkin->getOption(name, def) != 0;
+ return def;
}
#ifdef USE_PROFILER