diff --git a/assets/qml/Windows/CsvPlayer.qml b/assets/qml/Windows/CsvPlayer.qml index b1d10b25..0519c661 100644 --- a/assets/qml/Windows/CsvPlayer.qml +++ b/assets/qml/Windows/CsvPlayer.qml @@ -64,9 +64,9 @@ FramelessWindow.CustomWindow { target: Cpp_CSV_Player function onOpenChanged() { if (Cpp_CSV_Player.isOpen) - root.visible = true + root.showNormal() else - root.visible = false + root.hide() } }