Skip to content

Commit 416c9e5

Browse files
Merge pull request #9 from iic-jku/selection-filter-options-fix
Fixed an issue where the `in` operator did not work
2 parents b659249 + d523be5 commit 416c9e5

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

grain.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<name>KLayoutPluginUtils</name>
44
<token/>
55
<hidden>true</hidden>
6-
<version>0.14</version>
6+
<version>0.15</version>
77
<api-version/>
88
<title>Utility Library for KLayout Plugins</title>
99
<doc>Utility Python package used by various IIC KLayout Plugins</doc>

python/klayout_plugin_utils/selection_filter_options.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ def from_ui(cls) -> SelectionFilterOptions:
108108
if action.checked:
109109
options |= o
110110

111-
return options
111+
return SelectionFilterOptions(options)
112112

113113
#--------------------------------------------------------------------------------
114114

0 commit comments

Comments
 (0)