@@ -135,12 +135,15 @@ Dialog {
135
135
id: sourceConnectionSettings
136
136
columns: 2
137
137
138
+ Layout .fillWidth : true
139
+
138
140
Label {
139
141
text: qsTr (" Redis Server:" )
140
142
Layout .preferredWidth : 250
141
143
}
142
144
143
145
Label {
146
+ Layout .fillWidth : true
144
147
text: bulkOperations .connectionName
145
148
}
146
149
@@ -150,6 +153,7 @@ Dialog {
150
153
}
151
154
152
155
Label {
156
+ Layout .fillWidth : true
153
157
text: bulkOperations .dbIndex
154
158
}
155
159
@@ -169,6 +173,8 @@ Dialog {
169
173
FilePathInput {
170
174
id: rdbPath
171
175
176
+ Layout .fillWidth : true
177
+
172
178
objectName: " rdm_bulk_operations_dialog_rdb_path"
173
179
174
180
placeholderText: qsTranslate (" RDM" ," Path to dump.rdb file" )
@@ -188,6 +194,9 @@ Dialog {
188
194
189
195
SpinBox {
190
196
id: rdbDb
197
+
198
+ Layout .fillWidth : true
199
+
191
200
minimumValue: 0
192
201
maximumValue: 10000000000
193
202
value: 0
@@ -204,7 +213,9 @@ Dialog {
204
213
Layout .preferredWidth : 250
205
214
}
206
215
207
- BetterTextField {
216
+ TextField {
217
+ Layout .fillWidth : true
218
+
208
219
text: bulkOperations .keyPattern
209
220
onTextChanged: {
210
221
bulkOperations .keyPattern = text
@@ -215,6 +226,7 @@ Dialog {
215
226
RowLayout {
216
227
id: ttlField
217
228
229
+ Layout .fillWidth : true
218
230
Layout .columnSpan : 2
219
231
220
232
Label {
@@ -225,6 +237,8 @@ Dialog {
225
237
SpinBox {
226
238
id: ttlValue
227
239
240
+ Layout .fillWidth : true
241
+
228
242
objectName: " rdm_bulk_operations_dialog_ttl_value"
229
243
230
244
minimumValue: - 1
@@ -245,6 +259,8 @@ Dialog {
245
259
}
246
260
247
261
ComboBox {
262
+ Layout .fillWidth : true
263
+
248
264
id: targetConnection
249
265
}
250
266
@@ -255,6 +271,8 @@ Dialog {
255
271
SpinBox {
256
272
id: targetDatabaseIndex
257
273
274
+ Layout .fillWidth : true
275
+
258
276
objectName: " rdm_bulk_operations_dialog_target_db_index"
259
277
260
278
minimumValue: 0
@@ -275,6 +293,8 @@ Dialog {
275
293
276
294
BetterCheckbox {
277
295
id: replaceKeys
296
+
297
+ Layout .fillWidth : true
278
298
}
279
299
}
280
300
}
0 commit comments