Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: v2.0.11
release_name: v2.0.11
tag_name: v2.0.12
release_name: v2.0.12
body: |
Update padding and columns in the textbox frame. Aligns text better and makes things look nicer.
Bind Enter key to search.
draft: false
prerelease: false
- name: Upload Release Asset
Expand Down
3 changes: 2 additions & 1 deletion PySN.py
Original file line number Diff line number Diff line change
Expand Up @@ -269,14 +269,15 @@ def clear_items(self):
#Main window and some button functionality. Vaguely named widgets are in order of how they appear on screen.
class App(customtkinter.CTk):
def __init__(self):
super().__init__()
super().__init__()
self.geometry('760x640')
self.title('PySN')
self.resizable(0,0)
self.toplevel_window = None
self.stop_down = False
self.grid_rowconfigure((0, 1, 2), weight=1)
self.grid_columnconfigure((0, 1, 2, 3, 4, 5, 6, 7), weight=1)
self.bind('<Return>', lambda event: self.button_search())

self.entry = customtkinter.CTkEntry(master=self, placeholder_text='Enter Serial', width = 125)
self.entry.grid(row=0, column=0, padx=(4,2), pady=(6,0), sticky='ew')
Expand Down
Loading