Improve edit interface: full-screen layout with toolbars, versioned saving to edited_media folder

This commit is contained in:
Kiwy Signage Player
2025-12-05 00:25:53 +02:00
parent 72d382b96b
commit fba2007bdf
4 changed files with 316 additions and 97 deletions

View File

@@ -224,12 +224,12 @@
pos: self.pos
radius: [dp(15)]
# New control panel overlay (bottom center, 1/6 width, 90% transparent)
# New control panel overlay (bottom center, width for 6 buttons, 90% transparent)
BoxLayout:
id: controls_layout
orientation: 'horizontal'
size_hint: None, None
width: root.width / 6 if root.width > 0 else dp(260)
width: dp(370)
height: dp(70)
pos: (root.width - self.width) / 2, dp(10)
opacity: 1