From dfc15280c00632bab3e534dea3ef65641e3c6006 Mon Sep 17 00:00:00 2001 From: Matthew Dawson Date: Fri, 8 Jun 2012 19:49:50 +0000 Subject: [PATCH] Remove a bunch of pieces of code. There was some code making the input boxes multi-line, for no reason. It caused weird random errors though, so disable behaviour. git-svn-id: https://groke.mcmaster.ca/svn/grad/colin/trunk/TableTool@8519 57e6efec-57d4-0310-aeb1-a6c144bb1a8b --- @GUI/init.m | 3 --- 1 file changed, 3 deletions(-) diff --git a/@GUI/init.m b/@GUI/init.m index 44e552a..d653478 100644 --- a/@GUI/init.m +++ b/@GUI/init.m @@ -66,7 +66,6 @@ object.check_pb = uicontrol('style','push',... 'string','Syntax',... 'HorizontalAlign','left',... 'Parent',object.fig,... - 'Max',2.0,... 'callback',@(src,event)check_call(object,src,event)); @@ -108,7 +107,6 @@ object.function_name_control = uicontrol('style','edit',... 'HorizontalAlign','center',... 'FontWeight','bold',... 'FontSize',12,... - 'Max',2.0,... 'KeyPressFcn',@(src,event)textbox_callback(object,src,event),... 'BackgroundColor',[1 1 1]); @@ -124,7 +122,6 @@ object.function_inputs_control = uicontrol('style','edit',... 'Parent',object.fig,... 'HorizontalAlign','center',... 'FontWeight','bold',... - 'Max',2.0,... 'FontSize',12,... 'KeyPressFcn',@(src,event)textbox_callback(object,src,event),... 'BackgroundColor',[1 1 1]); -- GitLab