From 19e77e78663b2f0b4b881380df7e8c17d10c4997 Mon Sep 17 00:00:00 2001 From: whitequark Date: Mon, 10 Oct 2016 17:44:01 +0000 Subject: [PATCH] Mark group dirty when clicking "allow redundant constraints" link. Otherwise, the now-valid constraint will not become satisfied. --- src/textscreens.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/textscreens.cpp b/src/textscreens.cpp index e00b2bd..72c88e7 100644 --- a/src/textscreens.cpp +++ b/src/textscreens.cpp @@ -469,6 +469,7 @@ void TextWindow::ScreenAllowRedundant(int link, uint32_t v) { Group *g = SK.GetGroup(SS.TW.shown.group); g->allowRedundant = true; + SS.MarkGroupDirty(g->h); SS.GenerateAll(); SS.TW.shown.screen = SCREEN_GROUP_INFO;