diff --git a/CMakeLists.txt.user.2.3pre1 b/CMakeLists.txt.user.2.3pre1 deleted file mode 100644 index 06f8c9cbc..000000000 --- a/CMakeLists.txt.user.2.3pre1 +++ /dev/null @@ -1,147 +0,0 @@ - - - - ProjectExplorer.Project.ActiveTarget - 0 - - - ProjectExplorer.Project.EditorSettings - - true - false - UTF-8 - false - false - 4 - true - 1 - true - false - true - 0 - 8 - true - 1 - true - true - true - false - - - - ProjectExplorer.Project.Target.0 - - Desktop - - CMakeProjectManager.DefaultCMakeTarget - 0 - 0 - 0 - - /home/micha/Develop/tomahawk-build - ProjectExplorer.ToolChain.Gcc:/usr/bin/g++.x86-linux-generic-elf-64bit. - ProjectExplorer.ToolChain.Gcc:/usr/bin/g++.x86-linux-generic-elf-64bit. - - - - - false - Make - - CMakeProjectManager.MakeStep - - 1 - Build - - ProjectExplorer.BuildSteps.Build - - - - clean - - true - Make - - CMakeProjectManager.MakeStep - - 1 - Clean - - ProjectExplorer.BuildSteps.Clean - - 2 - false - - all - - CMakeProjectManager.CMakeBuildConfiguration - - 1 - - - 0 - Deploy - - ProjectExplorer.BuildSteps.Deploy - - 1 - No deployment - - ProjectExplorer.DefaultDeployConfiguration - - 1 - - - true - 25 - - true - valgrind - - 0 - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - 11 - 12 - 13 - 14 - - 2 - tomahawk - --verbose - false - - Q_FATAL_WARNINGS=1 - - - tomahawk - - CMakeProjectManager.CMakeRunConfiguration. - 3768 - true - false - - 1 - - - - ProjectExplorer.Project.TargetCount - 1 - - - ProjectExplorer.Project.Updater.EnvironmentId - {6caf061d-47d5-4e4f-a8d8-0d83c14e4267} - - - ProjectExplorer.Project.Updater.FileVersion - 9 - - diff --git a/data/qml/tomahawkimports/InputField.qml b/data/qml/tomahawkimports/InputField.qml index cb5588dad..9f052124d 100644 --- a/data/qml/tomahawkimports/InputField.qml +++ b/data/qml/tomahawkimports/InputField.qml @@ -25,7 +25,8 @@ Rectangle { verticalCenter: parent.verticalCenter } height: parent.height * 0.6 - width: root.showSearchIcon ? height : 0 + width: root.showSearchIcon ? height : 1 + opacity: root.showSearchIcon ? 1 : 0 smooth: true source: "../../images/search-icon.svg" } @@ -66,7 +67,8 @@ Rectangle { verticalCenter: parent.verticalCenter } height: parent.height * 0.8 - width: (root.showSearchIcon && root.text.length > 0) ? height : 0 + width: (root.showSearchIcon && root.text.length > 0) ? height : 1 + opacity: (root.showSearchIcon && root.text.length > 0) ? 1 : 0 smooth: true source: "../../images/search-box-dismiss-x.svg"