1
0
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:
kojima
2002-11-22 00:11:17 +00:00
parent 4d6cd7f326
commit 0bfa12a1fc
2 changed files with 3 additions and 2 deletions

View File

@@ -29,7 +29,8 @@ Changes since version 0.80.1:
- Changed the default position display while moving a window to 'Center'.
- Better outline when drawing balloons.
- 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:
.............................

View File

@@ -2415,7 +2415,7 @@ wWindowConfigureBorders(WWindow *wwin)
#endif
if (!WFLAGP(wwin, no_titlebar))
flags |= WFF_TITLEBAR;
if (!WFLAGP(wwin, no_resizebar))
if (!WFLAGP(wwin, no_resizebar) && !WFLAGP(wwin, no_resizable))
flags |= WFF_RESIZEBAR;
if (!WFLAGP(wwin, no_border))
flags |= WFF_BORDER;