diff options
| author | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2006-01-02 16:05:20 +0000 |
|---|---|---|
| committer | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2006-01-02 16:05:20 +0000 |
| commit | 1068f9bc04ef901d7031026b1a9b25e32dd0da8a (patch) | |
| tree | 8986fcfea4a3c1587b9c0db93717a8f7e9e01009 /lib/python/Screens/HarddiskSetup.py | |
| parent | 0be83826dd31db1b88058bfc93528610afde2fda (diff) | |
| download | enigma2-1068f9bc04ef901d7031026b1a9b25e32dd0da8a.tar.gz enigma2-1068f9bc04ef901d7031026b1a9b25e32dd0da8a.zip | |
beautify the ok, cancel and initialize buttons
Diffstat (limited to 'lib/python/Screens/HarddiskSetup.py')
| -rw-r--r-- | lib/python/Screens/HarddiskSetup.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/python/Screens/HarddiskSetup.py b/lib/python/Screens/HarddiskSetup.py index 290d0bac..582b5ba8 100644 --- a/lib/python/Screens/HarddiskSetup.py +++ b/lib/python/Screens/HarddiskSetup.py @@ -3,6 +3,7 @@ from Components.ActionMap import ActionMap from Components.Harddisk import harddiskmanager #global harddiskmanager from Components.MenuList import MenuList from Components.Label import Label +from Components.Pixmap import Pixmap from Screens.MessageBox import MessageBox from enigma import eTimer @@ -28,7 +29,8 @@ class HarddiskSetup(Screen): self["model"] = Label(_("Model: ") + hdd.model()) self["capacity"] = Label(_("Capacity: ") + hdd.capacity()) self["bus"] = Label(_("Bus: ") + hdd.bus()) - self["initialize"] = Label(_("Initialize")) + self["initialize"] = Pixmap() + self["initializetext"] = Label(_("Initialize")) self["actions"] = ActionMap(["OkCancelActions"], { |
