diff options
author | Matt Wilson <msw@redhat.com> | 2000-05-03 19:14:38 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2000-05-03 19:14:38 +0000 |
commit | e2dff0b66a53f29bb5a11ecc349129ac72d32972 (patch) | |
tree | 2a89e29c6439048bb6a0a5930e17aa607a208315 /installclasses | |
parent | 8933059128cb9274b188561815e62b1b933768b9 (diff) | |
download | anaconda-e2dff0b66a53f29bb5a11ecc349129ac72d32972.tar.gz anaconda-e2dff0b66a53f29bb5a11ecc349129ac72d32972.tar.xz anaconda-e2dff0b66a53f29bb5a11ecc349129ac72d32972.zip |
added pixmaps
Diffstat (limited to 'installclasses')
-rw-r--r-- | installclasses/custom.py | 2 | ||||
-rw-r--r-- | installclasses/gnomeclass.py | 2 | ||||
-rw-r--r-- | installclasses/kde.py | 2 | ||||
-rw-r--r-- | installclasses/server.py | 1 |
4 files changed, 7 insertions, 0 deletions
diff --git a/installclasses/custom.py b/installclasses/custom.py index 7e7546351..ba38b0955 100644 --- a/installclasses/custom.py +++ b/installclasses/custom.py @@ -5,6 +5,8 @@ from translate import N_ class InstallClass(BaseInstallClass): name = N_("Install Custom System") + pixmap = "custom.png" + sortPriority = 10000 def __init__(self, expert): diff --git a/installclasses/gnomeclass.py b/installclasses/gnomeclass.py index b8fd5960a..789bb6316 100644 --- a/installclasses/gnomeclass.py +++ b/installclasses/gnomeclass.py @@ -4,6 +4,8 @@ from translate import N_ class InstallClass(Workstation): name = N_("Install GNOME Workstation") + pixmap = "gnome-workstation.png" + sortPriority = 1 def __init__(self, expert): diff --git a/installclasses/kde.py b/installclasses/kde.py index c5357cb0a..67841e124 100644 --- a/installclasses/kde.py +++ b/installclasses/kde.py @@ -4,6 +4,8 @@ from translate import N_ class InstallClass(Workstation): name = N_("Install KDE Workstation") + pixmap = "kde-workstation.png" + sortPriority = 1 def __init__(self, expert): diff --git a/installclasses/server.py b/installclasses/server.py index bd3d95015..62f1198e9 100644 --- a/installclasses/server.py +++ b/installclasses/server.py @@ -6,6 +6,7 @@ import os class InstallClass(BaseInstallClass): name = N_('Install Server System') + pixmap = "server.png" sortPriority = 10 def __init__(self, expert): |