Browse Source

Fix build_fontoption signature

tags/v1.0.2
Matt Baer 5 years ago
parent
commit
95dc0eb8cb
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/window.vala

+ 1
- 1
src/window.vala View File

@@ -174,7 +174,7 @@ public class WriteAs.MainWindow : Gtk.ApplicationWindow {
}

private unowned SList<Gtk.RadioMenuItem>? font_options = null;
private void build_fontoption(Gtk.Menu menu,
private Gtk.RadioMenuItem build_fontoption(Gtk.Menu menu,
string label, string fontstyle, string families) {
var option = new Gtk.RadioMenuItem.with_label(font_options, label);
font_options = option.get_group();


Loading…
Cancel
Save