From fe4e5a727580d4ae064a12b81e3ae2de84ab9410 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Sat, 16 Jan 2010 13:19:01 +0100 Subject: add mnemonics --- udev-browse.vala | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/udev-browse.vala b/udev-browse.vala index 66ca129..af44d9a 100644 --- a/udev-browse.vala +++ b/udev-browse.vala @@ -82,7 +82,7 @@ public class MainWindow : Window { public MainWindow() { string ss[1]; - title = "udev Browser"; + title = "udev-browse"; position = WindowPosition.CENTER; set_default_size(1000, 700); set_border_width(12); @@ -168,8 +168,8 @@ public class MainWindow : Window { scroll.add(property_view); vbox.pack_start(scroll, true, true, 0); - follow_change_check_button = new CheckButton.with_mnemonic("Focus follows changing devices"); - follow_add_check_button = new CheckButton.with_mnemonic("Focus follows new devices"); + follow_change_check_button = new CheckButton.with_mnemonic("Focus follows _changing devices"); + follow_add_check_button = new CheckButton.with_mnemonic("Focus follows _new devices"); follow_add_check_button.set_active(true); vbox.pack_start(follow_add_check_button, false, false, 0); vbox.pack_start(follow_change_check_button, false, false, 0); -- cgit