diff --git a/ChangeLog b/ChangeLog index abc40a86..b402dbec 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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 ) +- Fixed bug with resizebars appearing out of nothing when reloading configs Changes since version 0.80.0: ............................. diff --git a/src/window.c b/src/window.c index 52119537..ed49de7d 100644 --- a/src/window.c +++ b/src/window.c @@ -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;