From 5da17e892a94978e39473e1877afe3efe47ece26 Mon Sep 17 00:00:00 2001 From: thrust26 Date: Wed, 23 May 2018 14:40:12 +0200 Subject: [PATCH] fixed "Path" spelling error (using German "Pfad" :) --- src/gui/BrowserDialog.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/BrowserDialog.cxx b/src/gui/BrowserDialog.cxx index 911c38af0..284835bc7 100644 --- a/src/gui/BrowserDialog.cxx +++ b/src/gui/BrowserDialog.cxx @@ -53,7 +53,7 @@ BrowserDialog::BrowserDialog(GuiObject* boss, const GUI::Font& font, xpos = 10; ypos = 4 + _th; // Current path - TODO: handle long paths ? - StaticTextWidget* t = new StaticTextWidget(this, font, xpos, ypos + 2, "Pfad "); + StaticTextWidget* t = new StaticTextWidget(this, font, xpos, ypos + 2, "Path "); _currentPath = new EditTextWidget(this, font, xpos + t->getWidth(), ypos, _w - t->getWidth() - 2 * xpos, lineHeight); _currentPath->setEditable(false);