diff --git a/resources/desktop/com.github.rssguard.appdata.xml b/resources/desktop/com.github.rssguard.appdata.xml index 44baacff0..cb3aac413 100644 --- a/resources/desktop/com.github.rssguard.appdata.xml +++ b/resources/desktop/com.github.rssguard.appdata.xml @@ -30,7 +30,7 @@ https://martinrotter.github.io/donate/ - + none diff --git a/src/librssguard/gui/dialogs/formmain.cpp b/src/librssguard/gui/dialogs/formmain.cpp index ed1c0abe5..7ea68cec8 100755 --- a/src/librssguard/gui/dialogs/formmain.cpp +++ b/src/librssguard/gui/dialogs/formmain.cpp @@ -410,7 +410,7 @@ void FormMain::onFeedUpdatesProgress(const Feed* feed, int current, int total) { statusBar()->showProgressFeeds(int((current * 100.0) / total), //: Text display in status bar when particular feed is updated. - tr("Updated feed '%1'").arg(feed->title())); + tr("Fetched '%1'").arg(TextFactory::shorten(feed->title()))); } void FormMain::updateMessageButtonsAvailability() { diff --git a/src/librssguard/gui/toolbars/statusbar.cpp b/src/librssguard/gui/toolbars/statusbar.cpp index f5c271535..34734ae5b 100755 --- a/src/librssguard/gui/toolbars/statusbar.cpp +++ b/src/librssguard/gui/toolbars/statusbar.cpp @@ -18,7 +18,7 @@ StatusBar::StatusBar(QWidget* parent) : QStatusBar(parent) { m_barProgressFeeds = new ProgressBarWithText(this); m_barProgressFeeds->setTextVisible(true); - m_barProgressFeeds->setFixedWidth(200); + m_barProgressFeeds->setFixedWidth(230); m_barProgressFeeds->setVisible(false); m_barProgressFeeds->setObjectName(QSL("m_barProgressFeeds")); @@ -27,7 +27,7 @@ StatusBar::StatusBar(QWidget* parent) : QStatusBar(parent) { m_barProgressDownload = new ProgressBarWithText(this); m_barProgressDownload->setTextVisible(true); - m_barProgressDownload->setFixedWidth(200); + m_barProgressDownload->setFixedWidth(230); m_barProgressDownload->setVisible(false); m_barProgressDownload->setObjectName(QSL("m_barProgressDownload"));