Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
openplotter-skfilter (2.0.2-dev) bionic; urgency=medium

* Adjust for dark theme

-- e-sailing Thu, 09 Apr 2020 13:17:43 +0100

openplotter-skfilter (2.0.1-dev) bionic; urgency=medium

* Text and languages source changes
Expand Down
2 changes: 0 additions & 2 deletions openplotterSKfilter/nodes_SK_subflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,6 @@ def __init__(self, parent, line):
self.SetFont(wx.Font(10, wx.FONTFAMILY_DEFAULT, wx.FONTSTYLE_NORMAL, wx.FONTWEIGHT_NORMAL))

panel = wx.Panel(self)
panel.SetBackgroundColour(wx.Colour(230,230,230,255))

vessellabel = wx.StaticText(panel, label=_('Vessel'))
self.vessel = wx.TextCtrl(panel, size=(290,-1))
Expand Down Expand Up @@ -563,7 +562,6 @@ def __init__(self, parent, line):
self.SetFont(wx.Font(10, wx.FONTFAMILY_DEFAULT, wx.FONTSTYLE_NORMAL, wx.FONTWEIGHT_NORMAL))

panel = wx.Panel(self)
panel.SetBackgroundColour(wx.Colour(230,230,230,255))

skkeylabel = wx.StaticText(panel, label=_('Signal K key'))
self.skkey = wx.TextCtrl(panel, size=(290,-1))
Expand Down
8 changes: 2 additions & 6 deletions openplotterSKfilter/openplotterSKfilter.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,14 +156,12 @@ def pageSKfilter(self):
self.available_source = [_('label'),_('type'),_('pgn'),_('src'),_('sentence'),_('talker')]
self.available_source_nr = ['label','type','pgn','src','sentence','talker']

self.SetBackgroundColour(wx.Colour(230,230,230,255))

self.SetFont(wx.Font(10, wx.FONTFAMILY_DEFAULT, wx.FONTSTYLE_NORMAL, wx.FONTWEIGHT_NORMAL))

self.icon = wx.Icon(self.currentdir+"/data/openplotter-SKfilter-24.png", wx.BITMAP_TYPE_PNG)
self.SetIcon(self.icon)

self.list_filter = wx.ListCtrl(self.p_SKfilter, -1, style=wx.LC_REPORT | wx.SIMPLE_BORDER)
self.list_filter = wx.ListCtrl(self.p_SKfilter, -1, style=wx.LC_REPORT | wx.LC_SINGLE_SEL | wx.LC_HRULES)
self.list_filter.InsertColumn(0, _('Signal K key'), width=240)
self.list_filter.InsertColumn(1, _('Source Type'), width=120)
self.list_filter.InsertColumn(2, _('Condition'), width=70)
Expand Down Expand Up @@ -244,14 +242,12 @@ def pageSKprefer(self):
self.available_source = [_('label'),_('type'),_('pgn'),_('src'),_('sentence'),_('talker')]
self.available_source_nr = ['label','type','pgn','src','sentence','talker']

self.SetBackgroundColour(wx.Colour(230,230,230,255))

self.SetFont(wx.Font(10, wx.FONTFAMILY_DEFAULT, wx.FONTSTYLE_NORMAL, wx.FONTWEIGHT_NORMAL))

self.icon = wx.Icon(self.currentdir+"/data/openplotter-SKfilter.png", wx.BITMAP_TYPE_PNG)
self.SetIcon(self.icon)

self.list_prefer = wx.ListCtrl(self.p_SKprefer, -1, style=wx.LC_REPORT | wx.SIMPLE_BORDER)
self.list_prefer = wx.ListCtrl(self.p_SKprefer, -1, style=wx.LC_REPORT | wx.LC_SINGLE_SEL | wx.LC_HRULES)
self.list_prefer.InsertColumn(0, _('Signal K key'), width=240)
self.list_prefer.InsertColumn(1, _('Source Type'), width=120)
self.list_prefer.InsertColumn(2, _('Value'), width=70)
Expand Down
1 change: 0 additions & 1 deletion openplotterSKfilter/select_key.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ def __init__(self, oldkey, selectvessels):
self.SetIcon(icon)

panel = wx.Panel(self)
panel.SetBackgroundColour(wx.Colour(230,230,230,255))

conf_ = conf.Conf()
sk_folder = conf_.get('GENERAL', 'sk_folder')
Expand Down
2 changes: 1 addition & 1 deletion openplotterSKfilter/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
version = '2.0.1'
version = '2.0.2'
codeName = 'Open Arms'
state = 'dev'