Fix wrond schema versions.
This commit is contained in:
parent
5e20d3dd22
commit
9c18e37cce
3 changed files with 2 additions and 3 deletions
|
@ -12,7 +12,7 @@ CREATE TABLE IF NOT EXISTS Information (
|
||||||
inf_value TEXT NOT NULL
|
inf_value TEXT NOT NULL
|
||||||
);
|
);
|
||||||
-- !
|
-- !
|
||||||
INSERT INTO Information VALUES (1, 'schema_version', '8');
|
INSERT INTO Information VALUES (1, 'schema_version', '11');
|
||||||
-- !
|
-- !
|
||||||
CREATE TABLE IF NOT EXISTS Accounts (
|
CREATE TABLE IF NOT EXISTS Accounts (
|
||||||
id INTEGER PRIMARY KEY,
|
id INTEGER PRIMARY KEY,
|
||||||
|
|
|
@ -6,7 +6,7 @@ CREATE TABLE IF NOT EXISTS Information (
|
||||||
inf_value TEXT NOT NULL
|
inf_value TEXT NOT NULL
|
||||||
);
|
);
|
||||||
-- !
|
-- !
|
||||||
INSERT INTO Information VALUES (1, 'schema_version', '8');
|
INSERT INTO Information VALUES (1, 'schema_version', '11');
|
||||||
-- !
|
-- !
|
||||||
CREATE TABLE IF NOT EXISTS Accounts (
|
CREATE TABLE IF NOT EXISTS Accounts (
|
||||||
id INTEGER PRIMARY KEY,
|
id INTEGER PRIMARY KEY,
|
||||||
|
|
|
@ -81,7 +81,6 @@ void MessagesView::createConnections() {
|
||||||
}
|
}
|
||||||
|
|
||||||
void MessagesView::keyboardSearch(const QString& search) {
|
void MessagesView::keyboardSearch(const QString& search) {
|
||||||
|
|
||||||
// WARNING: This is quite hacky way how to force selection of next item even
|
// WARNING: This is quite hacky way how to force selection of next item even
|
||||||
// with extended selection enabled.
|
// with extended selection enabled.
|
||||||
setSelectionMode(QAbstractItemView::SingleSelection);
|
setSelectionMode(QAbstractItemView::SingleSelection);
|
||||||
|
|
Loading…
Add table
Reference in a new issue