tag editor: refresh filename parser windows properly

This commit is contained in:
Andrzej Rybczak
2009-11-13 16:50:52 +01:00
parent 9a5a053ec3
commit 180d71ed28

View File

@@ -210,10 +210,15 @@ void TagEditor::Refresh()
mvvline(MainStartY, RightColumnStartX-1, 0, MainHeight); mvvline(MainStartY, RightColumnStartX-1, 0, MainHeight);
Tags->Display(); Tags->Display();
if (w == FParser) if (w == FParserDialog)
FParserHelper->Display(); {
else if (w == FParserHelper) FParserDialog->Display();
}
else if (w == FParser || w == FParserHelper)
{
FParser->Display(); FParser->Display();
FParserHelper->Display();
}
} }
void TagEditor::Update() void TagEditor::Update()