diff --git a/CHANGELOG b/CHANGELOG index bbc7a24..cdeae21 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -53,3 +53,6 @@ - Deb postinstall generates optimized files, this will increase loading speed - Relation module has SQL-like delete - Relation module has SQL-like update +- Relation module has SQL-like insert +- GUI can be used to insert and delete tuples +- Showing fields of selected relation will work with themes different than oxygen diff --git a/maingui.py b/maingui.py index 176cb5f..a6be497 100644 --- a/maingui.py +++ b/maingui.py @@ -405,7 +405,7 @@ class Ui_Form(object): QtCore.QObject.connect(self.lstRelations,QtCore.SIGNAL("itemDoubleClicked(QListWidgetItem*)"),self.printRelation) QtCore.QObject.connect(self.lstRelations,QtCore.SIGNAL("itemClicked(QListWidgetItem*)"),self.showAttributes) QtCore.QMetaObject.connectSlotsByName(Form) - Form.setTabOrder(self. txtResult,self.txtQuery) + Form.setTabOrder(self.txtResult,self.txtQuery) Form.setTabOrder(self.txtQuery,self.cmdExecute) Form.setTabOrder(self.cmdExecute,self.lstRelations) Form.setTabOrder(self.lstRelations,self.cmdLoad)