diff options
| author | Richard Hughes <richard@hughsie.com> | 2010-05-28 10:51:59 (GMT) |
|---|---|---|
| committer | Richard Hughes <richard@hughsie.com> | 2010-05-28 10:51:59 (GMT) |
| commit | e97f8b11d0ac0870d7c29ee444fc1764a30e38ee (patch) | |
| tree | 55da7bb2270513289f89ffa5df1678211d213b8e | |
| parent | 3ca9b190c81b0fb344d6f61d0286c430237ee7b8 (diff) | |
| download | gnome-power-manager-e97f8b11d0ac0870d7c29ee444fc1764a30e38ee.zip gnome-power-manager-e97f8b11d0ac0870d7c29ee444fc1764a30e38ee.tar.xz | |
Use device icons from the icon name specification
| -rw-r--r-- | src/gpm-upower.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gpm-upower.c b/src/gpm-upower.c index a1cba14..1d28b90 100644 --- a/src/gpm-upower.c +++ b/src/gpm-upower.c @@ -583,16 +583,16 @@ gpm_device_kind_to_icon (UpDeviceKind kind) icon = "application-certificate"; break; case UP_DEVICE_KIND_MOUSE: - icon = "mouse"; + icon = "input-mouse"; break; case UP_DEVICE_KIND_KEYBOARD: icon = "input-keyboard"; break; case UP_DEVICE_KIND_PDA: - icon = "input-gaming"; + icon = "pda"; break; case UP_DEVICE_KIND_PHONE: - icon = "camera-video"; + icon = "phone"; break; default: egg_warning ("enum unrecognised: %i", kind); |