diff --git a/app/config.py b/app/config.py
index 68c5600..1b21e0e 100644
--- a/app/config.py
+++ b/app/config.py
@@ -11,6 +11,7 @@ class Config(object):
CHECK_AUDACITY_AT_STARTUP = True
CART_DIRECTORY = "/home/kae/radio/CartTracks"
CARTS_COUNT = 10
+ CARTS_HIDE = True
COLOUR_BITRATE_LOW = "#ffcdd2"
COLOUR_BITRATE_MEDIUM = "#ffeb6f"
COLOUR_BITRATE_OK = "#dcedc8"
diff --git a/app/musicmuster.py b/app/musicmuster.py
index be9c659..33c1596 100755
--- a/app/musicmuster.py
+++ b/app/musicmuster.py
@@ -161,7 +161,11 @@ class Window(QMainWindow, Ui_MainWindow):
self.tabPlaylist.currentWidget
self.load_last_playlists()
- self.carts_init()
+ if Config.CARTS_HIDE:
+ self.cartsWidget.hide()
+ self.frame_6.hide()
+ else:
+ self.carts_init()
self.enable_play_next_controls()
self.timer.start(Config.TIMER_MS)
self.connect_signals_slots()
diff --git a/app/ui/main_window.ui b/app/ui/main_window.ui
index 2c16b51..95f8f7d 100644
--- a/app/ui/main_window.ui
+++ b/app/ui/main_window.ui
@@ -290,23 +290,6 @@ padding-left: 8px;
- -
-
-
-
-
-
- Qt::Horizontal
-
-
-
- 40
- 20
-
-
-
-
-
-
-
@@ -813,6 +796,25 @@ padding-left: 8px;
+ -
+
+
+
-
+
+
+ Qt::Horizontal
+
+
+
+ 40
+ 20
+
+
+
+
+
+
+