From 31a1c0d820272e503ccf782157aa45b4772dbc37 Mon Sep 17 00:00:00 2001 From: falkTX Date: Wed, 28 Feb 2024 10:31:03 +0100 Subject: [PATCH] Fix min size updates, switch to dpf develop branch again Signed-off-by: falkTX --- dpf | 2 +- plugins/Common/IldaeilUI.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dpf b/dpf index d26aaed..b1e77c3 160000 --- a/dpf +++ b/dpf @@ -1 +1 @@ -Subproject commit d26aaed625847eea53bfb3b02b2a815edb055f71 +Subproject commit b1e77c32ba58ebbe9d9c80bb750fc20ef98b99fd diff --git a/plugins/Common/IldaeilUI.cpp b/plugins/Common/IldaeilUI.cpp index 03c29f5..04f8e23 100644 --- a/plugins/Common/IldaeilUI.cpp +++ b/plugins/Common/IldaeilUI.cpp @@ -688,7 +688,7 @@ class IldaeilUI : public UI, // reduce geometry constraint if needed if (fIgnoreNextHostWindowResize) return; - if (width < fCurrentConstraintSize.getWidth() || height < fCurrentConstraintSize.getHeight()) + if (width < fCurrentConstraintSize.getWidth() || height + extraHeight < fCurrentConstraintSize.getHeight()) fUpdateGeometryConstraints = true; }