Skip to content

Commit

Permalink
Update Steganographier.py
Browse files Browse the repository at this point in the history
  • Loading branch information
cenglin123 authored Apr 24, 2024
1 parent 40e885d commit 10b03a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Steganographier.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,10 @@ def create_widgets(self):

# 创建一个变量用于存储下拉菜单的选项
self.type_option_var = tk.StringVar()
self.type_option_var.set("mkv") # 设置文件类型默认值
self.type_option_var.set("mp4") # 设置文件类型默认值
self.type_option_label = tk.Label(params_frame, text="Output Type:")
self.type_option_label.pack(side=tk.LEFT, padx=5, pady=5)
self.type_option = tk.OptionMenu(params_frame, self.type_option_var, "mkv", "mp4") # 下拉菜单
self.type_option = tk.OptionMenu(params_frame, self.type_option_var, "mp4", "mkv") # 下拉菜单
self.type_option.config(width=8) # 设置宽度
self.type_option.pack(side=tk.LEFT, padx=5, pady=5)

Expand Down

0 comments on commit 10b03a9

Please sign in to comment.