diff options
Diffstat (limited to 'src/gui/window.h')
-rw-r--r-- | src/gui/window.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/gui/window.h b/src/gui/window.h index a44a56d8..03dfafb2 100644 --- a/src/gui/window.h +++ b/src/gui/window.h @@ -155,6 +155,12 @@ class Window : public gcn::Window void setMaxHeight(unsigned int height); /** + * Sets flag to show a title or not. + */ + void setShowTitle(bool flag) + { mShowTitle = flag; } + + /** * Sets whether the window is sticky. * A sticky window will not have its visibility set to false * on a general setVisible(false) call. |