Skip to content

Commit

Permalink
Merge pull request #49 from ryonakano/fix-build-with-older-valac
Browse files Browse the repository at this point in the history
Fix build with old valac
  • Loading branch information
ChildishGiant authored Nov 23, 2023
2 parents 9c57a01 + 123e7a4 commit eda445f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/MainWindow.vala
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ public class Mixer.MainWindow : Hdy.Window {
var name_label = new Gtk.Label (app.name.to_string ()) {
// If the name's longer than 32 chars use ...
max_width_chars = 32,
ellipsize = Pango.EllipsizeMode.END,
ellipsize = Pango.EllipsizeMode.END
};

var volume_scale = new Gtk.Scale.with_range (Gtk.Orientation.HORIZONTAL, 0, 100, 5);
Expand Down Expand Up @@ -271,7 +271,7 @@ public class Mixer.MainWindow : Hdy.Window {
// Output dropdown
var dropdown = new Gtk.ComboBoxText () {
// Minimum width
width_request = 75,
width_request = 75
};

dropdown.cell_area.foreach ((cell_renderer) => {
Expand Down

0 comments on commit eda445f

Please sign in to comment.