Skip to content

Commit 901db79

Browse files
authored
Cleanup CustomShortcutListBox (#537)
1 parent df9febf commit 901db79

File tree

5 files changed

+372
-385
lines changed

5 files changed

+372
-385
lines changed

src/Behavior/Behavior.vala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ public class Keyboard.Behaviour.Page : Gtk.Box {
252252

253253
onscreen_keyboard_settings.clicked.connect (() => {
254254
try {
255-
var appinfo = AppInfo.create_from_commandline ("onboard-settings", null, NONE);
255+
var appinfo = GLib.AppInfo.create_from_commandline ("onboard-settings", null, NONE);
256256
appinfo.launch (null, null);
257257
} catch (Error e) {
258258
critical ("Unable to launch onboard-settings: %s", e.message);

src/Layout/Widgets/AddLayoutDialog.vala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ public class Keyboard.LayoutPage.AddLayoutDialog : Granite.Dialog {
208208
keyboard_map_button.clicked.connect (() => {
209209
string command = "gkbd-keyboard-display \"--layout=" + layout_id + "\"";
210210
try {
211-
AppInfo.create_from_commandline (command, null, AppInfoCreateFlags.NONE).launch (null, null);
211+
GLib.AppInfo.create_from_commandline (command, null, AppInfoCreateFlags.NONE).launch (null, null);
212212
} catch (Error e) {
213213
warning ("Error launching keyboard layout display: %s", e.message);
214214
}

0 commit comments

Comments
 (0)