mirror of
https://github.com/sqlitebrowser/sqlitebrowser.git
synced 2026-01-20 02:50:46 -06:00
Remove the modified flag in the EditTableDialog
Remove the flag storing the mofification status in the edit table dialog. It's only been used in one place and there it was not even really needed - so why bothering updating and maintaining it?
This commit is contained in:
@@ -627,9 +627,7 @@ void MainWindow::editTable()
|
||||
|
||||
EditTableDialog dialog(this);
|
||||
dialog.setActiveTable(&db, tableToEdit);
|
||||
dialog.exec();
|
||||
//check modified status
|
||||
if(dialog.modified)
|
||||
if(dialog.exec())
|
||||
{
|
||||
populateStructure();
|
||||
resetBrowser();
|
||||
|
||||
Reference in New Issue
Block a user