Skip to content

Commit 0f4ac7e

Browse files
committed
index: Support creating indices without sorting
See issue sqlitebrowser#176.
1 parent e01307a commit 0f4ac7e

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/CreateIndexDialog.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ void CreateIndexDialog::tableChanged(const QString& new_table)
4747

4848
// And put a combobox to select the order in which to index the field in the last column
4949
QComboBox* order = new QComboBox(this);
50+
order->addItem("");
5051
order->addItem("ASC");
5152
order->addItem("DESC");
5253
ui->tableIndexColumns->setCellWidget(i, 2, order);

0 commit comments

Comments
 (0)