Merge pull request from MikeTheWatchGuy/Dev-latest

filtering
This commit is contained in:
MikeTheWatchGuy 2018-10-06 22:58:13 -04:00 committed by GitHub
commit 3faf463954
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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()