Skip to content

Commit

Permalink
fix(ui): use Unicode ellipsis instead of triple-dot (#1477)
Browse files Browse the repository at this point in the history
  • Loading branch information
ratijas committed Apr 5, 2023
1 parent a617ae5 commit 0655d73
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/libs/ui/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ void MainWindow::addTab(BrowserTab *tab, int index)
}

ui->webViewStack->insertWidget(index, tab);
m_tabBar->insertTab(index, tr("Loading..."));
m_tabBar->insertTab(index, tr("Loading"));
m_tabBar->setCurrentIndex(index);
m_tabBar->setTabData(index, QVariant::fromValue(tab));
}
Expand Down
6 changes: 3 additions & 3 deletions src/libs/ui/mainwindow.ui
Original file line number Diff line number Diff line change
Expand Up @@ -182,12 +182,12 @@
</action>
<action name="actionSubmitFeedback">
<property name="text">
<string>&amp;Submit Feedback...</string>
<string>&amp;Submit Feedback</string>
</property>
</action>
<action name="actionCheckForUpdates">
<property name="text">
<string>&amp;Check for updates...</string>
<string>&amp;Check for updates</string>
</property>
</action>
<action name="actionFind">
Expand All @@ -201,7 +201,7 @@
</action>
<action name="actionDocsets">
<property name="text">
<string>&amp;Docsets...</string>
<string>&amp;Docsets</string>
</property>
</action>
</widget>
Expand Down
4 changes: 2 additions & 2 deletions src/libs/ui/settingsdialog.ui
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@
<item>
<widget class="QPushButton" name="docsetStorageBrowseButton">
<property name="text">
<string>&amp;Browse...</string>
<string>&amp;Browse</string>
</property>
</widget>
</item>
Expand Down Expand Up @@ -447,7 +447,7 @@
<item>
<widget class="QPushButton" name="customCssFileBrowseButton">
<property name="text">
<string>Bro&amp;wse...</string>
<string>Bro&amp;wse</string>
</property>
</widget>
</item>
Expand Down

0 comments on commit 0655d73

Please sign in to comment.