diff options
| author | ambar chakravartty <[email protected]> | 2025-02-02 04:49:11 +0000 |
|---|---|---|
| committer | Méven Car <[email protected]> | 2025-02-06 14:32:35 +0000 |
| commit | bb163a7b3dc7857f698150460b33ba8f3f2204f9 (patch) | |
| tree | 90a6be4cea3bf0908bc011f70a71d8299eeccaa7 /src/dolphintabbar.cpp | |
| parent | 0bf31bd847d28485d3a2115b0ce9e794654a053b (diff) | |
Made style and context enhancements
Co-authored by: Felix Ernst
Diffstat (limited to 'src/dolphintabbar.cpp')
| -rw-r--r-- | src/dolphintabbar.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dolphintabbar.cpp b/src/dolphintabbar.cpp index b942c4fd3..4df25263f 100644 --- a/src/dolphintabbar.cpp +++ b/src/dolphintabbar.cpp @@ -177,7 +177,7 @@ void DolphinTabBar::contextMenuEvent(QContextMenuEvent *event) Q_EMIT tabCloseRequested(index); } else if (selectedAction == renameTabAction) { bool renamed = false; - const QString tabNewName = QInputDialog::getText(this, i18n("Rename Tab"), i18n("New tab name:"), QLineEdit::Normal, tabText(index), &renamed); + const QString tabNewName = QInputDialog::getText(this, i18nc("@title:window for text input", "Rename Tab"), i18n("New tab name:"), QLineEdit::Normal, tabText(index), &renamed); if (renamed) { Q_EMIT tabRenamed(index, tabNewName); |
