summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPo Lu <luangruo@yahoo.com>2022-05-05 06:33:49 +0000
committerPo Lu <luangruo@yahoo.com>2022-05-05 06:33:59 +0000
commit8f391ae26eab6654360f621acaeb2bc0935e3d32 (patch)
treeaa9c4dab520b6d0f5b882b713b9ea13b9404dc15
parentd15b11b50e92a13ebe90f28f3ac8791a1385edaf (diff)
downloademacs-8f391ae26eab6654360f621acaeb2bc0935e3d32.tar.gz
Fix min size reporting of style pane in Haiku font dialogs
* src/haiku_support.cc (class DualLayoutView): (MinSize): Implement correctly with both views.
-rw-r--r--src/haiku_support.cc14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/haiku_support.cc b/src/haiku_support.cc
index 33acaacaaf4..0ab31bc98dc 100644
--- a/src/haiku_support.cc
+++ b/src/haiku_support.cc
@@ -2575,6 +2575,20 @@ class DualLayoutView : public BView
BView::FrameResized (new_width, new_height);
}
+ /* This is called by the BSplitView. */
+ BSize
+ MinSize (void)
+ {
+ float width, height;
+ BSize size_1;
+
+ size_1 = view_1->MinSize ();
+ view_2->GetPreferredSize (&width, &height);
+
+ return BSize (std::max (size_1.width, width),
+ std::max (size_1.height, height));
+ }
+
public:
DualLayoutView (BScrollView *first, BView *second) : BView (NULL, B_FRAME_EVENTS),
view_1 (first),