fixed "Path" spelling error (using German "Pfad" :)

This commit is contained in:
thrust26 2018-05-23 14:40:12 +02:00
parent 4c5493f120
commit 5da17e892a
1 changed files with 1 additions and 1 deletions

View File

@ -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);