File tree Expand file tree Collapse file tree 3 files changed +5
-0
lines changed Expand file tree Collapse file tree 3 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ ToolBar {
12
12
Button {
13
13
iconSource: " qrc:/images/add.svg"
14
14
text: qsTr (" Connect to Redis Server" )
15
+ objectName: " rdm_connect_to_redis_server_btn"
15
16
Layout .preferredWidth : 230
16
17
17
18
onClicked: {
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ import "./common"
7
7
8
8
Dialog {
9
9
id: root
10
+ objectName: " rdm_connection_settings_dialog"
10
11
title: ! settings || ! settings .name ? qsTr (" New Connection Settings" ) : qsTr (" Edit Connection Settings - %1" ).arg (settings .name )
11
12
12
13
property var settings
@@ -139,6 +140,7 @@ Dialog {
139
140
140
141
TextField {
141
142
id: connectionName
143
+ objectName: " rdm_connection_name_field"
142
144
Layout .fillWidth : true
143
145
placeholderText: qsTr (" Connection Name" )
144
146
text: root .settings ? root .settings .name : " "
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ import "./common"
6
6
7
7
Dialog {
8
8
id: root
9
+ objectName: " rdm_quick_start_dialog"
9
10
title: qsTr (" Explore Redis Desktop Manager" )
10
11
11
12
contentItem: Item {
@@ -34,6 +35,7 @@ Dialog {
34
35
35
36
Item { Layout .fillWidth : true ; }
36
37
Button {
38
+ objectName: " rdm_quick_start_dialog_ok_btn"
37
39
text: qsTr (" OK" )
38
40
onClicked: root .close ()
39
41
}
You can’t perform that action at this time.
0 commit comments