From 2502d45acafcb2ab0109eea8ee280187fbd95489 Mon Sep 17 00:00:00 2001 From: Augustin Cavalier Date: Tue, 22 Jan 2019 13:04:44 -0500 Subject: [PATCH] BTabView: Change layout constructor to default to B_WIDTH_FROM_WIDEST. This seems to fit the "spirit of layout" better. Change-Id: I7a75b58de4c9f703d828cdd292b7b91ee720c135 Reviewed-on: https://review.haiku-os.org/c/891 Reviewed-by: waddlesplash --- headers/os/interface/TabView.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/headers/os/interface/TabView.h b/headers/os/interface/TabView.h index 03b485ecc5..e568125ec9 100644 --- a/headers/os/interface/TabView.h +++ b/headers/os/interface/TabView.h @@ -94,7 +94,7 @@ public: }; BTabView(const char* name, - button_width width = B_WIDTH_AS_USUAL, + button_width width = B_WIDTH_FROM_WIDEST, uint32 flags = B_FULL_UPDATE_ON_RESIZE | B_WILL_DRAW | B_NAVIGABLE_JUMP | B_FRAME_EVENTS | B_NAVIGABLE);