mirror of https://github.com/odrling/Aegisub
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.
This commit is contained in:
parent
6e3b30c43b
commit
4dc14ed973
|
@ -82,8 +82,8 @@ wxTextCtrl(parent,id,value,pos,size,TimeEditWindowStyle | style,validator,name)
|
||||||
#ifdef __WXGTK__
|
#ifdef __WXGTK__
|
||||||
int w, h;
|
int w, h;
|
||||||
GetTextExtent(GetValue(),&w,&h);
|
GetTextExtent(GetValue(),&w,&h);
|
||||||
w += 20;
|
w += 30;
|
||||||
h += 5;
|
h += 8;
|
||||||
SetSizeHints(w,h,w,h);
|
SetSizeHints(w,h,w,h);
|
||||||
#endif
|
#endif
|
||||||
ready = true;
|
ready = true;
|
||||||
|
|
Loading…
Reference in New Issue