Skip to content

Commit

Permalink
*
Browse files Browse the repository at this point in the history
  • Loading branch information
lainsce committed Jan 30, 2024
1 parent e36a92d commit 1f10eac
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions fuses/appearance/AppearanceView.vala
Original file line number Diff line number Diff line change
Expand Up @@ -396,6 +396,7 @@ public class AppearanceView : Gtk.Box {
};
roundness_scale.scale.orientation = Gtk.Orientation.HORIZONTAL;
roundness_scale.scale.adjustment = roundness_adjustment;
roundness_scale.scale.draw_value = true;
roundness_scale.scale.value_pos = Gtk.PositionType.LEFT;
roundness_scale.stop_indicator_visibility = true;
roundness_scale.scale.add_mark (1.0, Gtk.PositionType.TOP, null);
Expand Down
2 changes: 2 additions & 0 deletions fuses/appearance/TextView.vala
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ public class Appearance.TextView : Gtk.Box {
};
size_scale.scale.orientation = Gtk.Orientation.HORIZONTAL;
size_scale.scale.adjustment = size_adjustment;
size_scale.scale.draw_value = true;
size_scale.scale.value_pos = Gtk.PositionType.LEFT;
size_scale.stop_indicator_visibility = true;
size_scale.scale.add_mark (1, Gtk.PositionType.TOP, null);
Expand All @@ -51,6 +52,7 @@ public class Appearance.TextView : Gtk.Box {
};
font_weight_scale.scale.orientation = Gtk.Orientation.HORIZONTAL;
font_weight_scale.scale.adjustment = font_weight_adjustment;
font_weight_scale.scale.draw_value = true;
font_weight_scale.scale.value_pos = Gtk.PositionType.LEFT;
font_weight_scale.stop_indicator_visibility = true;
font_weight_scale.scale.add_mark (1.0, Gtk.PositionType.TOP, null);
Expand Down

0 comments on commit 1f10eac

Please sign in to comment.