mirror of
https://github.com/martinrotter/rssguard.git
synced 2025-01-01 02:48:05 +01:00
Fix wrond schema versions.
This commit is contained in:
parent
5e20d3dd22
commit
9c18e37cce
@ -12,7 +12,7 @@ CREATE TABLE IF NOT EXISTS Information (
|
||||
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 (
|
||||
id INTEGER PRIMARY KEY,
|
||||
|
@ -6,7 +6,7 @@ CREATE TABLE IF NOT EXISTS Information (
|
||||
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 (
|
||||
id INTEGER PRIMARY KEY,
|
||||
|
@ -81,7 +81,6 @@ void MessagesView::createConnections() {
|
||||
}
|
||||
|
||||
void MessagesView::keyboardSearch(const QString& search) {
|
||||
|
||||
// WARNING: This is quite hacky way how to force selection of next item even
|
||||
// with extended selection enabled.
|
||||
setSelectionMode(QAbstractItemView::SingleSelection);
|
||||
|
Loading…
Reference in New Issue
Block a user