mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-05-22 04:13:39 +08:00
[rotwing] Rename to make name consistent (#3366)
* Make naming consistent rotwing * Fixes * more files * fix conf * revert * update * double id's * Missed a file * missing renames --------- Co-authored-by: Freek van Tienen <freek.v.tienen@gmail.com>
This commit is contained in:
committed by
GitHub
parent
c5b9678d77
commit
7da8daf6e2
+2
-2
@@ -19,11 +19,11 @@
|
||||
#
|
||||
|
||||
import wx
|
||||
import rot_wing_viewer
|
||||
import rotwing_viewer
|
||||
|
||||
class RotWingApp(wx.App):
|
||||
def OnInit(self):
|
||||
self.main = rot_wing_viewer.RotWingFrame()
|
||||
self.main = rotwing_viewer.RotWingFrame()
|
||||
self.main.Show()
|
||||
self.SetTopWindow(self.main)
|
||||
return True
|
||||
+1
-1
@@ -296,7 +296,7 @@ class RotWingFrame(wx.Frame):
|
||||
self.w = WIDTH
|
||||
self.h = WIDTH + BARH
|
||||
|
||||
self.cfg = wx.Config('rot_wing_conf')
|
||||
self.cfg = wx.Config('rotwing_conf')
|
||||
if self.cfg.Exists('width'):
|
||||
self.w = int(self.cfg.Read('width'))
|
||||
self.h = int(self.cfg.Read('height'))
|
||||
Reference in New Issue
Block a user