@@ -226,15 +226,15 @@ function createComponents(app)
226226 % Create UIFigure and hide until all components are created
227227 app.UIFigure = uifigure(' Visible' , ' off' );
228228 app.UIFigure.AutoResizeChildren = ' off' ;
229- app.UIFigure.Position = [100 100 276 430 ];
229+ app.UIFigure.Position = [100 100 276 460 ];
230230 app.UIFigure.Name = ' MATLAB App' ;
231231 app.UIFigure.Resize = ' off' ;
232232 app.UIFigure.CloseRequestFcn = createCallbackFcn(app , @UIFigureCloseRequest , true );
233233
234234 % Create TabGroup
235235 app.TabGroup = uitabgroup(app .UIFigure );
236236 app.TabGroup.AutoResizeChildren = ' off' ;
237- app.TabGroup.Position = [1 - 29 276 460 ];
237+ app.TabGroup.Position = [1 1 276 460 ];
238238
239239 % Create WelcomeTab
240240 app.WelcomeTab = uitab(app .TabGroup );
@@ -334,7 +334,6 @@ function createComponents(app)
334334 % Create StudentButton
335335 app.StudentButton = uibutton(app .TabReview , ' push' );
336336 app.StudentButton.ButtonPushedFcn = createCallbackFcn(app , @StudentButtonPushed , true );
337- app.StudentButton.BackgroundColor = [0.129411764705882 0.129411764705882 0.129411764705882 ];
338337 app.StudentButton.FontSize = 18 ;
339338 app.StudentButton.FontColor = [0 0 0 ];
340339 app.StudentButton.Position = [64 80 150 40 ];
@@ -343,7 +342,6 @@ function createComponents(app)
343342 % Create OtherButton
344343 app.OtherButton = uibutton(app .TabReview , ' push' );
345344 app.OtherButton.ButtonPushedFcn = createCallbackFcn(app , @OtherButtonPushed , true );
346- app.OtherButton.BackgroundColor = [0.129411764705882 0.129411764705882 0.129411764705882 ];
347345 app.OtherButton.FontSize = 18 ;
348346 app.OtherButton.FontColor = [0 0 0 ];
349347 app.OtherButton.Position = [64 34 150 40 ];
0 commit comments