Skip to content

Commit ab45ad8

Browse files
committed
250521.1
1 parent fd4e7d3 commit ab45ad8

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

easycoder/ec_pyside.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,9 @@ def addToLayout():
9393
return addToLayout()
9494
else: return False
9595
# (1)
96-
command['value'] = self.getValue()
96+
value = self.getValue()
97+
if value == None: return False
98+
command['value'] = value
9799
self.skip('to')
98100
if self.nextIsSymbol():
99101
record = self.getSymbolRecord()

0 commit comments

Comments
 (0)