more sane appearance of label inside progress bar
This commit is contained in:
parent
5ed2f3d501
commit
a96888d4e0
@ -30,7 +30,7 @@
|
||||
<url type="donation">https://martinrotter.github.io/donate/</url>
|
||||
<content_rating type="oars-1.1" />
|
||||
<releases>
|
||||
<release version="3.9.2" date="2021-08-03"/>
|
||||
<release version="3.9.2" date="2021-08-04"/>
|
||||
</releases>
|
||||
<content_rating type="oars-1.0">
|
||||
<content_attribute id="violence-cartoon">none</content_attribute>
|
||||
|
@ -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() {
|
||||
|
@ -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"));
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user