Skip to content

Commit

Permalink
Fix spelling (#12598)
Browse files Browse the repository at this point in the history
  • Loading branch information
fredcw authored Jan 1, 2025
1 parent 932b9da commit 7ccb18a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion data/theme/cinnamon-sass/widgets/_dialogs.scss
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
text-align: center;
@extend %title_2;

&.leightweight { @extend %title_4; }
&.lightweight { @extend %title_4; }
}

.message-dialog-description { text-align: center; }
Expand Down
4 changes: 2 additions & 2 deletions js/ui/dialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ var MessageDialogContent = GObject.registerClass({

this._updateTitleStyleLater = Meta.later_add(Meta.LaterType.BEFORE_REDRAW, () => {
this._updateTitleStyleLater = 0;
this._title.add_style_class_name('leightweight');
this._title.add_style_class_name('lightweight');
return GLib.SOURCE_REMOVE;
});
}
Expand All @@ -257,7 +257,7 @@ var MessageDialogContent = GObject.registerClass({

_setLabel(this._title, title);

this._title.remove_style_class_name('leightweight');
this._title.remove_style_class_name('lightweight');
this._updateTitleStyle();

this.notify('title');
Expand Down

0 comments on commit 7ccb18a

Please sign in to comment.