Skip to content

Commit

Permalink
remove versions for imports that need qt6 compact
Browse files Browse the repository at this point in the history
  • Loading branch information
AIIX committed Feb 7, 2023
1 parent 5c5f14e commit 2db5c83
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 9 deletions.
3 changes: 1 addition & 2 deletions import/qml/AudioPlayer.qml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,9 @@
import QtQuick 2.15
import QtQuick.Controls 2.15 as Controls
import QtQuick.Layouts 1.15
import QtMultimedia 5.15
import org.kde.kirigami 2.19 as Kirigami
import Mycroft 1.0 as Mycroft

import QtMultimedia

Item {
id: root
Expand Down
2 changes: 1 addition & 1 deletion import/qml/CardDelegate.qml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ import QtQuick 2.15
import QtQuick.Layouts 2.15
import QtQuick.Controls 2.15 as Controls
import org.kde.kirigami 2.19 as Kirigami
import Qt5Compat.GraphicalEffects 1.0
import Mycroft 1.0 as Mycroft
import Qt5Compat.GraphicalEffects

Delegate {
id: root
Expand Down
2 changes: 1 addition & 1 deletion import/qml/SkillView.qml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@

import QtQuick 2.15
import QtQuick.Layouts 1.15
import Qt5Compat.GraphicalEffects 1.0
import QtQuick.Controls 2.15 as Controls
import org.kde.kirigami 2.19 as Kirigami
import Mycroft 1.0 as Mycroft
import Qt5Compat.GraphicalEffects

import "private" as Private

Expand Down
2 changes: 1 addition & 1 deletion import/qml/SoundEffects.qml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*/

import QtQuick 2.15
import QtMultimedia 5.15
import QtMultimedia

pragma Singleton

Expand Down
2 changes: 1 addition & 1 deletion import/qml/StatusIndicator.qml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
*/

import QtQuick 2.15
import Qt5Compat.GraphicalEffects 1.0
import org.kde.kirigami 2.13 as Kirigami
import Mycroft 1.0 as Mycroft
import Qt5Compat.GraphicalEffects

Item {
id: root
Expand Down
2 changes: 1 addition & 1 deletion import/qml/VideoPlayer.qml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ import QtQuick 2.15
import QtQuick.Controls 2.15 as Controls
import QtQuick.Templates 2.15 as Templates
import QtQuick.Layouts 1.15
import QtMultimedia 5.15
import org.kde.kirigami 2.19 as Kirigami
import Mycroft 1.0 as Mycroft
import QtMultimedia

Item {
id: root
Expand Down
2 changes: 0 additions & 2 deletions tests/SkillViewTest.qml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,11 @@ Window {
maximumWidth : deviceWidth || undefined
x: deviceWidth ? Screen.desktopAvailableHeight - width : undefined
y: deviceHeight ? Screen.desktopAvailableHeight - height : undefined

color: "black"

Mycroft.SkillView {
id: mainView
activeSkills.whiteList: singleSkill.length > 0 ? singleSkill : null
Kirigami.Theme.colorSet: nightSwitch.checked ? Kirigami.Theme.Complementary : Kirigami.Theme.View
anchors.fill: parent
}
}

0 comments on commit 2db5c83

Please sign in to comment.