From 4dc14ed973d6680ae581176e633541ac1ac73313 Mon Sep 17 00:00:00 2001 From: harukalover Date: Fri, 3 Jul 2009 23:40:26 +0000 Subject: [PATCH] Increased the default size of the time edit control on wxGTK since it was still too small on some OS's after r3094 Originally committed to SVN as r3096. --- aegisub/src/timeedit_ctrl.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aegisub/src/timeedit_ctrl.cpp b/aegisub/src/timeedit_ctrl.cpp index 9652e9c4a..6c70c0690 100644 --- a/aegisub/src/timeedit_ctrl.cpp +++ b/aegisub/src/timeedit_ctrl.cpp @@ -82,8 +82,8 @@ wxTextCtrl(parent,id,value,pos,size,TimeEditWindowStyle | style,validator,name) #ifdef __WXGTK__ int w, h; GetTextExtent(GetValue(),&w,&h); - w += 20; - h += 5; + w += 30; + h += 8; SetSizeHints(w,h,w,h); #endif ready = true;