From e2dff0b66a53f29bb5a11ecc349129ac72d32972 Mon Sep 17 00:00:00 2001 From: Matt Wilson Date: Wed, 3 May 2000 19:14:38 +0000 Subject: added pixmaps --- installclasses/custom.py | 2 ++ installclasses/gnomeclass.py | 2 ++ installclasses/kde.py | 2 ++ installclasses/server.py | 1 + 4 files changed, 7 insertions(+) (limited to 'installclasses') 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): -- cgit