Disable inspection of writing to some wx properties. These do seem to get written, so it is likely pyCharm doesn't understand wx
This commit is contained in:
@@ -647,6 +647,7 @@ class FittingView(d.Display):
|
||||
def Snapshot(self):
|
||||
return self.FVsnapshot
|
||||
|
||||
# noinspection PyPropertyAccess
|
||||
def MakeSnapshot(self, maxColumns=1337):
|
||||
|
||||
if self.FVsnapshot:
|
||||
|
||||
@@ -144,6 +144,7 @@ class Display(wx.ListCtrl):
|
||||
else:
|
||||
event.Skip()
|
||||
|
||||
# noinspection PyPropertyAccess
|
||||
def addColumn(self, i, col):
|
||||
self.activeColumns.append(col)
|
||||
info = wx.ListItem()
|
||||
|
||||
@@ -33,6 +33,7 @@ def DrawFilledBitmap(width, height, color):
|
||||
return canvas
|
||||
|
||||
|
||||
# noinspection PyPropertyAccess
|
||||
def DrawGradientBar(width, height, gStart, gEnd, gMid=None, fillRatio=4):
|
||||
# we need to have dimensions to draw
|
||||
# assert width > 0 and height > 0
|
||||
|
||||
Reference in New Issue
Block a user