Skip to content

Commit d00a5ad

Browse files
committed
title case for some actions
1 parent 0336665 commit d00a5ad

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/saurus/gui/tabbar.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ void TabBar::setupTabControls(int index) {
2222
PlainToolButton* close_button = new PlainToolButton(this);
2323

2424
close_button->setIcon(qApp->icons()->fromTheme(QSL("window-close")));
25-
close_button->setToolTip(tr("Close this tab"));
26-
close_button->setText(tr("Close tab"));
25+
close_button->setToolTip(tr("Close This Tab"));
26+
close_button->setText(tr("Close Tab"));
2727
close_button->setFixedSize(iconSize());
2828

2929
// Close underlying tab when button is clicked.

src/saurus/plugin-system/filesystem/filesystemsidebar.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ void FilesystemSidebar::load() {
108108
// Initialize FS browser.
109109
m_cmbFilters = new QComboBox(widget_browser);
110110
m_cmbFilters->setEditable(true);
111-
m_cmbFilters->setToolTip(tr("Filter displayed files"));
111+
m_cmbFilters->setToolTip(tr("Filter Displayed Files"));
112112

113113
connect(m_cmbFilters, &QComboBox::currentTextChanged, this, [this](const QString& filter) {
114114
m_fsModel->setNameFilters({filter});

0 commit comments

Comments
 (0)