Skip to content

Commit db1c740

Browse files
committed
Sadness that we have to do this
marking it as minimum 7.0.1 still shows up as compatible and lets you install in 7.0.0
1 parent bcc1ec6 commit db1c740

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

round_tracks_action.py

+3
Original file line numberDiff line numberDiff line change
@@ -392,6 +392,9 @@ def defaults( self ):
392392
self.icon_file_name = os.path.join(os.path.dirname(__file__), "./round_tracks.png")
393393

394394
def Run( self ):
395+
if pcbnew.GetBuildVersion()=='(7.0.0)':
396+
wx.MessageBox("Sorry, this plugin is not compatible with KiCad 7.0.0\n\nIt should work with 7.0.1, if that's not out yet you can try KiCad nightly.")
397+
return
395398
board = pcbnew.GetBoard()
396399
rt = RoundTracks(board, self)
397400
rt.ShowModal()

0 commit comments

Comments
 (0)