Skip to content

Commit

Permalink
fix: shadow dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
garaevdi committed May 10, 2024
1 parent 08f8b82 commit f2cfd5d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/preferences/widgets/edit_shadow_window.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,12 @@ export const EditShadowWindow = GObject.registerClass(
private declare _unfocus_toggle_button: Gtk.ToggleButton;

// CssProvider to change style of preview widgets in edit window
private unfocus_provider!: Gtk.CssProvider;
private focus_provider!: Gtk.CssProvider;
private declare unfocus_provider: Gtk.CssProvider;
private declare focus_provider: Gtk.CssProvider;

// Load box-shadow from settings
private focused_shadow!: BoxShadow;
private unfocused_shadow!: BoxShadow;
private declare focused_shadow: BoxShadow;
private declare unfocused_shadow: BoxShadow;

_init() {
super._init({
Expand Down

0 comments on commit f2cfd5d

Please sign in to comment.