Skip to content

Commit 8577fe6

Browse files
committed
Fix layout of BulkOperationsDialog
1 parent 97c73cd commit 8577fe6

File tree

1 file changed

+21
-1
lines changed

1 file changed

+21
-1
lines changed

src/qml/bulk-operations/BulkOperationsDialog.qml

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,12 +135,15 @@ Dialog {
135135
id: sourceConnectionSettings
136136
columns: 2
137137

138+
Layout.fillWidth: true
139+
138140
Label {
139141
text: qsTr("Redis Server:")
140142
Layout.preferredWidth: 250
141143
}
142144

143145
Label {
146+
Layout.fillWidth: true
144147
text: bulkOperations.connectionName
145148
}
146149

@@ -150,6 +153,7 @@ Dialog {
150153
}
151154

152155
Label {
156+
Layout.fillWidth: true
153157
text: bulkOperations.dbIndex
154158
}
155159

@@ -169,6 +173,8 @@ Dialog {
169173
FilePathInput {
170174
id: rdbPath
171175

176+
Layout.fillWidth: true
177+
172178
objectName: "rdm_bulk_operations_dialog_rdb_path"
173179

174180
placeholderText: qsTranslate("RDM","Path to dump.rdb file")
@@ -188,6 +194,9 @@ Dialog {
188194

189195
SpinBox {
190196
id: rdbDb
197+
198+
Layout.fillWidth: true
199+
191200
minimumValue: 0
192201
maximumValue: 10000000000
193202
value: 0
@@ -204,7 +213,9 @@ Dialog {
204213
Layout.preferredWidth: 250
205214
}
206215

207-
BetterTextField {
216+
TextField {
217+
Layout.fillWidth: true
218+
208219
text: bulkOperations.keyPattern
209220
onTextChanged: {
210221
bulkOperations.keyPattern = text
@@ -215,6 +226,7 @@ Dialog {
215226
RowLayout {
216227
id: ttlField
217228

229+
Layout.fillWidth: true
218230
Layout.columnSpan: 2
219231

220232
Label {
@@ -225,6 +237,8 @@ Dialog {
225237
SpinBox {
226238
id: ttlValue
227239

240+
Layout.fillWidth: true
241+
228242
objectName: "rdm_bulk_operations_dialog_ttl_value"
229243

230244
minimumValue: -1
@@ -245,6 +259,8 @@ Dialog {
245259
}
246260

247261
ComboBox {
262+
Layout.fillWidth: true
263+
248264
id: targetConnection
249265
}
250266

@@ -255,6 +271,8 @@ Dialog {
255271
SpinBox {
256272
id: targetDatabaseIndex
257273

274+
Layout.fillWidth: true
275+
258276
objectName: "rdm_bulk_operations_dialog_target_db_index"
259277

260278
minimumValue: 0
@@ -275,6 +293,8 @@ Dialog {
275293

276294
BetterCheckbox {
277295
id: replaceKeys
296+
297+
Layout.fillWidth: true
278298
}
279299
}
280300
}

0 commit comments

Comments
 (0)