diff --git a/macosx/Controller.m b/macosx/Controller.m index 02e1273ad..2a86d6b2b 100644 --- a/macosx/Controller.m +++ b/macosx/Controller.m @@ -58,6 +58,8 @@ #define ROW_HEIGHT_SMALL 40.0 #define WINDOW_REGULAR_WIDTH 468.0 +#define MAX_URL_WINDOW_WIDTH 5000 + #define UPDATE_UI_SECONDS 1.0 #define AUTO_SPEED_LIMIT_SECONDS 5.0 @@ -288,6 +290,9 @@ static void sleepCallBack(void * controller, io_service_t y, natural_t messageTy [currentFilterButton setEnabled: YES]; + //url sheet + [fURLSheetWindow setMaxSize: NSMakeSize(MAX_URL_WINDOW_WIDTH, [fURLSheetWindow minSize].height)]; + //observe notifications NSNotificationCenter * nc = [NSNotificationCenter defaultCenter]; diff --git a/macosx/English.lproj/MainMenu.nib/keyedobjects.nib b/macosx/English.lproj/MainMenu.nib/keyedobjects.nib index 7026a5a42..fe9361e43 100644 Binary files a/macosx/English.lproj/MainMenu.nib/keyedobjects.nib and b/macosx/English.lproj/MainMenu.nib/keyedobjects.nib differ