mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-17 19:57:51 -06:00
Register sidebar controller in application, start with default sidebar view
This commit is contained in:
parent
db2c3525c4
commit
f2b4cbe182
3 changed files with 45 additions and 0 deletions
10
cura/Settings/SettingsSidebarView.py
Normal file
10
cura/Settings/SettingsSidebarView.py
Normal file
|
@ -0,0 +1,10 @@
|
|||
# Copyright (c) 2017 Ultimaker B.V.
|
||||
|
||||
from PyQt5.QtCore import QObject
|
||||
|
||||
from cura.Sidebar.SidebarView import SidebarView
|
||||
|
||||
class SettingsSidebarView(QObject, SidebarView):
|
||||
|
||||
def __init__(self):
|
||||
super().__init__()
|
Loading…
Add table
Add a link
Reference in a new issue