Browse Source

Fix min size updates, switch to dpf develop branch again

Signed-off-by: falkTX <falktx@falktx.com>
main
falkTX 1 year ago
parent
commit
31a1c0d820
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      dpf
  2. +1
    -1
      plugins/Common/IldaeilUI.cpp

+ 1
- 1
dpf

@@ -1 +1 @@
Subproject commit d26aaed625847eea53bfb3b02b2a815edb055f71
Subproject commit b1e77c32ba58ebbe9d9c80bb750fc20ef98b99fd

+ 1
- 1
plugins/Common/IldaeilUI.cpp View File

@@ -688,7 +688,7 @@ protected:
// 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;
}



Loading…
Cancel
Save