Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 615a66a

Browse files
committed
(ChipViewer): Make frame sticky NSEW to fix geometry problem.
1 parent 93990de commit 615a66a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Tools/pynche/ChipViewer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ class ChipViewer:
6868
def __init__(self, switchboard, master=None):
6969
self.__sb = switchboard
7070
self.__frame = Frame(master, relief=RAISED, borderwidth=1)
71-
self.__frame.grid(row=3, column=0, ipadx=5)
71+
self.__frame.grid(row=3, column=0, ipadx=5, sticky='NSEW')
7272
# create the chip that will display the currently selected color
7373
# exactly
7474
self.__sframe = Frame(self.__frame)

0 commit comments

Comments
 (0)