diff --git a/src/addUser.py b/src/addUser.py index 6329e51..bfdf2e0 100644 --- a/src/addUser.py +++ b/src/addUser.py @@ -97,6 +97,7 @@ def __init__(self, button3): self.label5 = Gtk.Label("Shell") shell = Gtk.ComboBoxText() self.sh = '/usr/local/bin/fish' + # Keeping this code for future project example. shell.append_text('sh') shell.append_text('csh') shell.append_text('tcsh') @@ -130,8 +131,8 @@ def __init__(self, button3): # set image for password matching self.img = Gtk.Image() table.attach(self.img, 2, 3, 5, 6) - table.attach(self.label5, 0, 1, 6, 7) - table.attach(shell, 1, 2, 6, 7) + # table.attach(self.label5, 0, 1, 6, 7) + # table.attach(shell, 1, 2, 6, 7) box2.pack_start(table, False, False, 0) self.box3 = Gtk.VBox(False, 10) self.box3.set_border_width(10)