summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2010-01-16 13:19:01 +0100
committerLennart Poettering <lennart@poettering.net>2010-01-16 13:19:01 +0100
commitfe4e5a727580d4ae064a12b81e3ae2de84ab9410 (patch)
treed1e48c30d1861336109679d63510c5c6865598da
parentc6dd25ceda038e1fa6e4b47b3319e350ab00893e (diff)
add mnemonics
-rw-r--r--udev-browse.vala6
1 files 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);