Skip to content

Commit 2483ee6

Browse files
committed
Shorten title to fit better in StartupApp
1 parent bfa955d commit 2483ee6

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Utilities/ProjectStartupApp.m

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ function startupFcn(app)
5252

5353
% Copy title and set cover image
5454
app.ProjectName = currentProject().Name;
55-
app.WelcomeTitle.Text = "Welcome to " + app.ProjectName;
55+
app.WelcomeTitle.Text = app.ProjectName;
5656
app.ReviewTitle.Text = app.WelcomeTitle.Text;
5757
app.CoverImage.ImageSource = app.ImagePath;
5858

@@ -217,7 +217,7 @@ function createComponents(app)
217217
app.WelcomeTitle.HorizontalAlignment = 'center';
218218
app.WelcomeTitle.VerticalAlignment = 'top';
219219
app.WelcomeTitle.WordWrap = 'on';
220-
app.WelcomeTitle.FontSize = 24;
220+
app.WelcomeTitle.FontSize = 21;
221221
app.WelcomeTitle.FontWeight = 'bold';
222222
app.WelcomeTitle.Layout.Row = 1;
223223
app.WelcomeTitle.Layout.Column = [1 3];
@@ -281,7 +281,7 @@ function createComponents(app)
281281
app.ReviewTitle.HorizontalAlignment = 'center';
282282
app.ReviewTitle.VerticalAlignment = 'top';
283283
app.ReviewTitle.WordWrap = 'on';
284-
app.ReviewTitle.FontSize = 24;
284+
app.ReviewTitle.FontSize = 21;
285285
app.ReviewTitle.FontWeight = 'bold';
286286
app.ReviewTitle.Layout.Row = 1;
287287
app.ReviewTitle.Layout.Column = [1 3];

0 commit comments

Comments
 (0)