Skip to content

Commit

Permalink
Merge branch 'master' into ghostbsd-src/issues/105
Browse files Browse the repository at this point in the history
  • Loading branch information
ericbsd committed Aug 17, 2022
2 parents 3589ec4 + 5e2d06c commit 14a6bc3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/addUser.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit 14a6bc3

Please sign in to comment.