mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-19 12:28:22 +01:00
fixed crash caused by resizebars that appear after reloading configs
This commit is contained in:
@@ -29,7 +29,8 @@ Changes since version 0.80.1:
|
|||||||
- Changed the default position display while moving a window to 'Center'.
|
- Changed the default position display while moving a window to 'Center'.
|
||||||
- Better outline when drawing balloons.
|
- Better outline when drawing balloons.
|
||||||
- Fixed wrlib to not accept too large images (fixes buffer overflow)
|
- Fixed wrlib to not accept too large images (fixes buffer overflow)
|
||||||
|
- Patched FAQ (David Coe <davidc@debian.org>)
|
||||||
|
- Fixed bug with resizebars appearing out of nothing when reloading configs
|
||||||
|
|
||||||
Changes since version 0.80.0:
|
Changes since version 0.80.0:
|
||||||
.............................
|
.............................
|
||||||
|
|||||||
@@ -2415,7 +2415,7 @@ wWindowConfigureBorders(WWindow *wwin)
|
|||||||
#endif
|
#endif
|
||||||
if (!WFLAGP(wwin, no_titlebar))
|
if (!WFLAGP(wwin, no_titlebar))
|
||||||
flags |= WFF_TITLEBAR;
|
flags |= WFF_TITLEBAR;
|
||||||
if (!WFLAGP(wwin, no_resizebar))
|
if (!WFLAGP(wwin, no_resizebar) && !WFLAGP(wwin, no_resizable))
|
||||||
flags |= WFF_RESIZEBAR;
|
flags |= WFF_RESIZEBAR;
|
||||||
if (!WFLAGP(wwin, no_border))
|
if (!WFLAGP(wwin, no_border))
|
||||||
flags |= WFF_BORDER;
|
flags |= WFF_BORDER;
|
||||||
|
|||||||
Reference in New Issue
Block a user