Skip to content

Commit

Permalink
Another fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lainsce committed Aug 21, 2024
1 parent 684ba61 commit d40ed4e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fuses/appearance/Views/AppearanceView.vala
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ public class AppearanceView : Gtk.Box {

EnsorModeButton child = ((EnsorModeButton)ensor_flowbox.flowbox.get_selected_children ().nth_data (0).get_child ());
var sels = ((int)Math.floor (fusebox_appearance_settings.get_int ("wallpaper-accent-choice") / 4));
tau_appearance_settings.set_string ("accent-color", He.hexcode_argb (child.colors.get(sel)));
tau_appearance_settings.set_string ("accent-color", He.hexcode_argb (child.colors.get(sels)));

multi.set_active (false);
red.set_active (false);
Expand Down Expand Up @@ -297,7 +297,7 @@ public class AppearanceView : Gtk.Box {

EnsorModeButton child = ((EnsorModeButton)ensor_flowbox.flowbox.get_selected_children ().nth_data (0).get_child ());
var sels = ((int)Math.floor (fusebox_appearance_settings.get_int ("wallpaper-accent-choice") / 4));
tau_appearance_settings.set_string ("accent-color", He.hexcode_argb (child.colors.get(sel)));
tau_appearance_settings.set_string ("accent-color", He.hexcode_argb (child.colors.get(sels)));

multi.set_active (false);
red.set_active (false);
Expand Down

0 comments on commit d40ed4e

Please sign in to comment.