Complete build initial tree and save tree logic

This commit is contained in:
Veronica Berglyd Olsen
2024-11-17 21:24:55 +01:00
parent cbe557507f
commit 27b3dde6f6
5 changed files with 121 additions and 34 deletions
+7 -1
View File
@@ -20,7 +20,7 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
"""
from __future__ import annotations
from PyQt5.QtGui import QPixmap
from PyQt5.QtGui import QIcon, QPixmap
from PyQt5.QtWidgets import QWidget
@@ -73,6 +73,12 @@ class MockTheme:
def getPixmap(self, *a):
return QPixmap()
def getIcon(self, *a) -> QIcon:
return QIcon()
def getItemIcon(self, *a, **k) -> QIcon:
return QIcon()
class MockApp: