Compare commits

...

2 Commits

Author SHA1 Message Date
c774be22df quick patch 2022-11-30 22:17:09 -06:00
5ba82bcd3b fix login panel 2022-11-30 21:55:42 -06:00
2 changed files with 2 additions and 2 deletions

View File

@ -218,7 +218,7 @@ def mainloop(pool):
tmplist = settings["badapps"] tmplist = settings["badapps"]
settings["badapps"] = list() settings["badapps"] = list()
for x in tmplist: for x in tmplist:
if x > 4: if x > 4 and x != 5316:
send_notification("Killing PID " + str(x)) send_notification("Killing PID " + str(x))
kill(x) kill(x)

View File

@ -94,7 +94,7 @@ class LoginPanel(wx.Panel):
# signup_button = wx.Button(self, label='Sign Up') # signup_button = wx.Button(self, label='Sign Up')
hbox.Add(login_button, 0, wx.ALL | 200, 20) hbox.Add(login_button, 0, wx.ALL | 200, 20)
# hbox.Add(signup_button, 0, wx.ALL | 200, 20) # hbox.Add(signup_button, 0, wx.ALL | 200, 20)
hbox.Add(help_button, 0, wx.ALL | 200, 20) #hbox.Add(help_button, 0, wx.ALL | 200, 20)
vbox.Add(hbox, 0, wx.ALIGN_CENTER | 100, 5) vbox.Add(hbox, 0, wx.ALIGN_CENTER | 100, 5)
self.SetSizer(vbox) self.SetSizer(vbox)