Don't disable the Browse Table option when browsing a read only database

This commit is contained in:
Martin Kleusberg
2016-01-27 20:28:06 +01:00
parent 6f17c3d1ea
commit ef8fbd83c8
+1 -1
View File
@@ -1148,7 +1148,7 @@ void MainWindow::changeTreeSelection()
}
if(type == "table" || type == "view")
{
ui->actionEditBrowseTable->setEnabled(!db.readOnly());
ui->actionEditBrowseTable->setEnabled(true);
ui->actionExportCsvPopup->setEnabled(true);
}
}