Skip to content

Commit

Permalink
Fix error when loading 'change parameters' UI. issue #388
Browse files Browse the repository at this point in the history
  • Loading branch information
shaise committed Jun 8, 2024
1 parent a91fa31 commit dfdd2f5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion FSChangeParams.py
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ def DialogClosing(self):
return

def getStandardButtons(self):
return QtGui.QDialogButtonBox.Ok + QtGui.QDialogButtonBox.Cancel
return QtGui.QDialogButtonBox.Ok | QtGui.QDialogButtonBox.Cancel


class FSChangeParamCommand:
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,8 @@ screwobj = sm.createFastener('ISO7046', 'M6', '8', 'simple')
</details>

#### Release Notes
* V0.5.22 08 Jun 2024: Fix regular expression issue.
- Fix error when loading 'change parameters' UI.
* V0.5.21 14 May 2024: Fix typos by @berberic2.
- Improve autogenerated names for T-slot-nuts by @berberic2.
- Improve slot generation for screw heads by @Syres916.
Expand Down
4 changes: 2 additions & 2 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<package format="1" xmlns="https://wiki.freecad.org/Package_Metadata">
<name>Fasteners Workbench</name>
<description>Some common fasteners and fastener tools for FreeCAD.</description>
<version>0.5.21</version>
<date>2024-05-14</date>
<version>0.5.22</version>
<date>2024-06-08</date>
<maintainer email="[email protected]">Shai Seger</maintainer>
<license file="LICENSE">GPL-2.0-or-later</license>
<url type="repository" branch="master">https://github.com/shaise/FreeCAD_FastenersWB</url>
Expand Down

0 comments on commit dfdd2f5

Please sign in to comment.