Skip to content

Commit b05ee9f

Browse files
authored
Fix combo box not showing all options.
1 parent c7763bd commit b05ee9f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/vina.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1161,7 +1161,7 @@ def __init__(self, sele):
11611161

11621162
def showPopup(self):
11631163
currentText = self.currentText().strip()
1164-
objects = cmd.get_object_list(self.sele, "all")
1164+
objects = cmd.get_names("all", enabled_only=True)
11651165
self.clear()
11661166
self.addItems(objects)
11671167
if currentText != "":

0 commit comments

Comments
 (0)