-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GUI v9.0 #28
GUI v9.0 #28
Changes from 1 commit
50107c9
df57729
9457cfc
544bb8d
604f0a7
fc33ab6
86505c2
0cf9e8e
550ad6e
b8cc0a0
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1566,8 +1566,9 @@ def place_xbar_options(master): | |
def create_param_pannel(master): | ||
paramPannel = tkinter.LabelFrame(master, text='Configuration', bd=BORDER, relief='groove') | ||
paramPannel.grid(row=0, column=1, rowspan=1, columnspan=1, sticky="nsew") | ||
|
||
# Use columnconfigure and rowconfigure to partition the columns, so that each column and row will fill the corresponding space | ||
# The 'weight' represents the weight of the corresponding row/column length. | ||
# The 'weight' represents the weight of the corresponding row/column length. | ||
for i in range(10): | ||
paramPannel.rowconfigure(i, weight=1) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please comment on There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Okay. Here the entire paramPannel is divided into many rows and columns, and the weights are allocated according to the size of the components to be occupied. The “weight” represents the weight of the corresponding row/column length. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ah, i mean add the comment above the corresponding code. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Okay I will do it. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There were some issues with my local environment, and a clash occurred, leading to an inability to sync the changes. I will submit the modified version in the future. |
||
for i in range(3): | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: period is missing at the end of comment.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Okay. I will add that period.