Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion examples/exhibition/main.qml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,6 @@ ApplicationWindow {
model: examplesFiles
delegate: ItemDelegate {
text: modelData.substring(0, modelData.indexOf(".qml"))
backgroundVisible: false
onClicked: navigation.currentIndex = index
checked: navigation.currentIndex === index
}
Expand Down
2 changes: 1 addition & 1 deletion examples/qml-inspect/Example_1.qml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import QtQuick 2.11
import org.deepin.dtk 1.0

Rectangle {
Item {
MouseArea {
anchors.fill: parent
acceptedButtons: Qt.LeftButton | Qt.RightButton
Expand Down
2 changes: 1 addition & 1 deletion examples/qml-inspect/Example_2.qml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import QtQuick.Window 2.11
import QtQuick.Layouts 1.11
import org.deepin.dtk 1.0

Rectangle {
Item {
property string iconStr: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEkAAABFCAYAAAAGscunAAAAAXNSR0IArs4c6QAAATNJREFUeF7t3DEOgkAYBeG3J2NvxnIy2JNhKEwUDYyWMJZmLPh8tH+Jn1OBcloYRCQwApH+Rlozgt9eMymZ9g/2uaQ145Ch1dRrIhw81ZIlPX1KSXvNviKNGVt7724BNmVKSxPp6N8WCbwLIokEBEDikkQCAiBxSSIBAZC4JJGAAEhckkhAACQuSSQgABKXJBIQAIlLEgkIgMQliQQEQOKSRAICIHFJIgEBkLgkkYAASFySSEAAJC5JJCAAEpckEhAAiUsSCQiAxCWJBARA4pJEAgIgcUkiAQGQuCSRgABIXJJIQAAkLkkkIAASlyQSEACJSxIJCIDEJYkEBEDikkQCAiBxSSIBAZD8tKSaessLEz09c2ZwPGETX294XuK5tN0Jju1rr96A11AkkYAASFwSQHoAZNuhVXVGph0AAAAASUVORK5CYII="

RowLayout {
Expand Down
2 changes: 1 addition & 1 deletion examples/qml-inspect/Example_colorselector.qml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import QtQuick 2.11
import org.deepin.dtk 1.0

Rectangle {
Item {
Label {
id: changePaletteLabel
anchors.left: parent.left
Expand Down
3 changes: 1 addition & 2 deletions examples/qml-inspect/Example_settingsdialog.qml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@ import QtQuick 2.0
import org.deepin.dtk 1.0
import org.deepin.dtk.settings 1.0 as Settings

Rectangle {
border.color: "blue"
Item {

property list<Settings.SettingsGroup> __groups: [
Settings.SettingsGroup {
Expand Down
Loading