1
0
mirror of https://github.com/gryf/wmaker.git synced 2025-12-19 20:38:08 +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

@@ -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;