Skip to content

Commit

Permalink
Fix build with old valac
Browse files Browse the repository at this point in the history
  • Loading branch information
ryonakano committed Nov 23, 2023
1 parent 9c57a01 commit 123e7a4
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 123e7a4

Please sign in to comment.