Skip to content

Commit

Permalink
Remove extra comments
Browse files Browse the repository at this point in the history
  • Loading branch information
ryonakano committed Dec 9, 2018
1 parent 1fae616 commit a80a395
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
1 change: 0 additions & 1 deletion src/MainWindow.vala
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ public class MainWindow : Gtk.ApplicationWindow {
}

construct {
// Import CSS
var cssprovider = new Gtk.CssProvider ();
cssprovider.load_from_resource ("/com/github/ryonakano/reco/Application.css");
Gtk.StyleContext.add_provider_for_screen (Gdk.Screen.get_default (),
Expand Down
4 changes: 1 addition & 3 deletions src/Views/WelcomeView.vala
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,9 @@ public class WelcomeView : Gtk.Box {
}

construct {
// Create settings widgets
var format_label = new Gtk.Label (_("Format:"));
format_label.xalign = 1;
// TODO: Make it possible to record with various formats

format_combobox = new Gtk.ComboBoxText ();
format_combobox.append ("aac", _("AAC"));
format_combobox.append ("flac", _("FLAC"));
Expand All @@ -57,7 +56,6 @@ public class WelcomeView : Gtk.Box {
settings_grid.attach (delay_label, 0, 2, 1, 1);
settings_grid.attach (delay_spin, 1, 2, 1, 1);

// Create buttons
record_button = new Gtk.Button ();
record_button.image = new Gtk.Image.from_icon_name ("audio-input-microphone-symbolic", Gtk.IconSize.DND);
record_button.tooltip_text = _("Start recording");
Expand Down

0 comments on commit a80a395

Please sign in to comment.