Skip to content

Commit

Permalink
fix combine img order error
Browse files Browse the repository at this point in the history
Signed-off-by: Shuyang Wu <[email protected]>
  • Loading branch information
Yiyiyimu committed May 10, 2021
1 parent a37921a commit 0c3ec40
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions GUI.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def Enter():
group = 1 if e4.get() == '私聊' else 2
emoji = 1 if e5.get() == '新' else 2
with_img = True if e6.get() == '是' else False
combine_img = True if e7.get() == '' else False
combine_img = True if e7.get() == '' else False
if (db_path == "" or qq_self == "" or qq == ""):
info.set("信息不完整!")
return ()
Expand Down Expand Up @@ -87,8 +87,8 @@ def url():

ttk.Label(root, text="合并图片:").grid(row=6, column=0, sticky="e")
e7 = ttk.Combobox(root)
e7['values'] = ('', '')
e7.current(0)
e7['values'] = ('', '')
e7.current(1)
e7.grid(row=6, column=1, columnspan=3, sticky="ew", pady=3)

root.grid_columnconfigure(2, weight=1)
Expand Down

0 comments on commit 0c3ec40

Please sign in to comment.