Skip to content

Commit

Permalink
minor fix for kv5 compat
Browse files Browse the repository at this point in the history
  • Loading branch information
easyw committed Mar 9, 2023
1 parent 575d1e5 commit 67c6726
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions round_tracks/round_trk.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,10 @@
import sys
import os
from pcbnew import *
from builtins import abs
try:
from builtins import abs
except:
pass
import wx
import pcbnew
import math
Expand Down Expand Up @@ -103,7 +106,7 @@ def __init__(self, parent):
class Tracks_Rounder(pcbnew.ActionPlugin):

def defaults(self):
self.name = "Rounder for Tracks\n version 2.7"
self.name = "Rounder for Tracks\n version 2.8"
self.category = "Modify PCB"
self.description = "Rounder for selected Traces on the PCB"
self.icon_file_name = os.path.join(os.path.dirname(__file__), "./round_track.png")
Expand Down

0 comments on commit 67c6726

Please sign in to comment.