mirror of
https://github.com/labwc/labwc.git
synced 2025-10-31 22:25:34 -04:00
ssd: allow hiding titlebar on maximization
<core disableMaximizedServerDecor="yes"> hides the titlebar when a window is maximized. Co-authored-by: @CosmicFusion
This commit is contained in:
parent
943f5751ee
commit
888dbedeed
6 changed files with 25 additions and 0 deletions
|
|
@ -1660,6 +1660,10 @@ undecorate(struct view *view)
|
|||
bool
|
||||
view_titlebar_visible(struct view *view)
|
||||
{
|
||||
if (view->maximized == VIEW_AXIS_BOTH
|
||||
&& rc.hide_maximized_window_titlebar) {
|
||||
return false;
|
||||
}
|
||||
return view->ssd_mode == LAB_SSD_MODE_FULL;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue