[gnome-settings-daemon] wacom: Add settings listing to list-wacom
- From: Bastien Nocera <hadess src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-settings-daemon] wacom: Add settings listing to list-wacom
- Date: Wed, 8 Feb 2012 17:00:20 +0000 (UTC)
commit a9ed268416e8a7de857a4c521425a47916092a48
Author: Bastien Nocera <hadess hadess net>
Date: Wed Feb 8 16:58:50 2012 +0000
wacom: Add settings listing to list-wacom
plugins/wacom/list-wacom.c | 17 +++++++++--------
1 files changed, 9 insertions(+), 8 deletions(-)
---
diff --git a/plugins/wacom/list-wacom.c b/plugins/wacom/list-wacom.c
index b053faa..7ebc130 100644
--- a/plugins/wacom/list-wacom.c
+++ b/plugins/wacom/list-wacom.c
@@ -138,18 +138,19 @@ print_buttons (GsdWacomDevice *device)
if (buttons == NULL)
return;
- g_print ("\tButtons:\n");
for (l = buttons; l != NULL; l = l->next) {
GsdWacomTabletButton *button = l->data;
- g_print ("\t\t%s ('%s', type: %s",
- button->name,
- button->id,
- button_type_to_string (button->type));
+ g_print ("\tButton: %s (%s)\n", button->name, button->id);
+ g_print ("\t\tType: %s\n", button_type_to_string (button->type));
if (button->group_id > 0)
- g_print (", group: %d)\n", button->group_id);
- else
- g_print (")\n");
+ g_print ("\t\tGroup: %d\n", button->group_id);
+ if (button->settings) {
+ char *loc;
+ loc = get_loc (button->settings);
+ g_print ("\t\tSettings: %s\n", loc);
+ g_free (loc);
+ }
}
g_list_free (buttons);
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]