Skip to content

Commit f8403af

Browse files
committed
Fix 03-11-01-01
修复因多余空格导致的问题
1 parent c1dd1a8 commit f8403af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

03-QtWidgets-常用控件/11-ComboBox-下拉框/01-QComboBox-组合下拉框/01-QComboBox-简介与创建.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def setup_ui(self) -> None:
2525

2626
# 实例化一个QComboBox,指定父控件为self
2727
cbb = QtWidgets.QComboBox(self)
28-
cbb .move(300, 100)
28+
cbb.move(300, 100)
2929

3030
# 添加条目
3131
cbb.addItem("PySide 6")

0 commit comments

Comments
 (0)