mirror of https://github.com/stella-emu/stella.git
fixed "Path" spelling error (using German "Pfad" :)
This commit is contained in:
parent
4c5493f120
commit
5da17e892a
|
@ -53,7 +53,7 @@ BrowserDialog::BrowserDialog(GuiObject* boss, const GUI::Font& font,
|
||||||
xpos = 10; ypos = 4 + _th;
|
xpos = 10; ypos = 4 + _th;
|
||||||
|
|
||||||
// Current path - TODO: handle long paths ?
|
// 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,
|
_currentPath = new EditTextWidget(this, font, xpos + t->getWidth(), ypos,
|
||||||
_w - t->getWidth() - 2 * xpos, lineHeight);
|
_w - t->getWidth() - 2 * xpos, lineHeight);
|
||||||
_currentPath->setEditable(false);
|
_currentPath->setEditable(false);
|
||||||
|
|
Loading…
Reference in New Issue