filtering

This commit is contained in:
MikeTheWatchGuy 2018-10-06 22:57:57 -04:00
parent addbf19ff9
commit 990b5aecee
1 changed files with 1 additions and 4 deletions

View File

@ -46,7 +46,7 @@ def main():
[sg.Text('Click refresh once or twice.. once for list, second to get CPU usage')],
[sg.T('Filter by typing name', font='ANY 14'), sg.In(size=(15,1), font='any 14', key='_filter_')],
[sg.RButton('Refresh'),
sg.RButton('Kill', button_color=('white','red')),
sg.RButton('Kill', button_color=('white','red'), bind_return_key=True),
sg.Exit(button_color=('white', 'sea green'))]]
window = sg.Window('Process Killer',
@ -98,8 +98,5 @@ def main():
window.FindElement('_processes_').Update(new_output)
if __name__ == "__main__":
main()