diff --git a/localization/rssguard-cs_CZ.ts b/localization/rssguard-cs_CZ.ts index 20b47d9dd..2400dde09 100644 --- a/localization/rssguard-cs_CZ.ts +++ b/localization/rssguard-cs_CZ.ts @@ -1,6 +1,6 @@ - + Application @@ -1808,6 +1808,10 @@ You have to restart manually. Musíte restartovat manuálně. + + Do you want to restart now? + + FormUpdate diff --git a/localization/rssguard-de_DE.ts b/localization/rssguard-de_DE.ts index 2434323cb..376b23c45 100644 --- a/localization/rssguard-de_DE.ts +++ b/localization/rssguard-de_DE.ts @@ -1780,6 +1780,10 @@ Authors of this application are NOT responsible for lost data. You have to restart manually. + + Do you want to restart now? + + FormUpdate diff --git a/localization/rssguard-en_GB.ts b/localization/rssguard-en_GB.ts index b960729c1..8848d664f 100644 --- a/localization/rssguard-en_GB.ts +++ b/localization/rssguard-en_GB.ts @@ -1778,6 +1778,10 @@ Authors of this application are NOT responsible for lost data. You have to restart manually. + + Do you want to restart now? + + FormUpdate diff --git a/localization/rssguard-fr_FR.ts b/localization/rssguard-fr_FR.ts index 84eb4b487..e6a40a85a 100644 --- a/localization/rssguard-fr_FR.ts +++ b/localization/rssguard-fr_FR.ts @@ -1796,6 +1796,10 @@ Les auteurs de cette application NE sont PAS responsable de la perte de données You have to restart manually. + + Do you want to restart now? + + FormUpdate diff --git a/localization/rssguard-it_IT.ts b/localization/rssguard-it_IT.ts index 5d690c800..824841026 100644 --- a/localization/rssguard-it_IT.ts +++ b/localization/rssguard-it_IT.ts @@ -1780,6 +1780,10 @@ Authors of this application are NOT responsible for lost data. You have to restart manually. + + Do you want to restart now? + + FormUpdate diff --git a/localization/rssguard-nl_NL.ts b/localization/rssguard-nl_NL.ts index 983882879..4a1f3ef33 100644 --- a/localization/rssguard-nl_NL.ts +++ b/localization/rssguard-nl_NL.ts @@ -1800,6 +1800,10 @@ You have to restart manually. Je moet handmatig herstarten. + + Do you want to restart now? + + FormUpdate diff --git a/localization/rssguard-sv_SE.ts b/localization/rssguard-sv_SE.ts index ebc2a8094..a4f90d616 100644 --- a/localization/rssguard-sv_SE.ts +++ b/localization/rssguard-sv_SE.ts @@ -1805,6 +1805,10 @@ You have to restart manually. Du måste starta om manuellt. + + Do you want to restart now? + + FormUpdate diff --git a/resources/text/CHANGELOG b/resources/text/CHANGELOG index 162bcdc99..272d3279a 100644 --- a/resources/text/CHANGELOG +++ b/resources/text/CHANGELOG @@ -3,7 +3,7 @@ Fixed:
    -
  • Fixed #76, #75.
  • +
  • Fixed #76, #75, #82.
Added: diff --git a/src/gui/formimportexport.cpp b/src/gui/formimportexport.cpp index 3325f2134..e4f6ed3bf 100644 --- a/src/gui/formimportexport.cpp +++ b/src/gui/formimportexport.cpp @@ -136,10 +136,7 @@ void FormImportExport::selectImportFile() { // Add more filters here. filter += filter_opml20; - QString selected_file = QFileDialog::getOpenFileName(this, tr("Select file for feeds import"), - QDir::homePath(), filter, &selected_filter); - - + QString selected_file = QFileDialog::getOpenFileName(this, tr("Select file for feeds import"), QDir::homePath(), filter, &selected_filter); if (!selected_file.isEmpty()) { if (selected_filter == filter_opml20) { diff --git a/src/gui/messagesview.cpp b/src/gui/messagesview.cpp index b0ce6397c..08c8323bf 100755 --- a/src/gui/messagesview.cpp +++ b/src/gui/messagesview.cpp @@ -52,7 +52,7 @@ MessagesView::~MessagesView() { void MessagesView::createConnections() { // Make sure that source message is opened // in new tab on double click. - connect(this, SIGNAL(doubleClicked(QModelIndex)), this, SLOT(openSelectedSourceMessagesInternally())); + connect(this, SIGNAL(doubleClicked(QModelIndex)), this, SLOT(openSelectedSourceArticlesExternally())); // Adjust columns when layout gets changed. connect(header(), SIGNAL(geometriesChanged()), this, SLOT(adjustColumns()));