1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Introjucer: Improvements to the translation tool.

This commit is contained in:
jules 2013-06-14 15:31:00 +01:00
parent 841c40d7ba
commit 77335b4baa
4 changed files with 100 additions and 33 deletions

View file

@ -554,14 +554,12 @@ void ProjectContentComponent::showTranslationTool()
}
else if (project != nullptr)
{
TranslationToolComponent* ttc = new TranslationToolComponent();
ttc->initialiseForProject (*project);
new FloatingToolWindow ("Translation File Builder",
"transToolWindowPos_" + project->getProjectUID(),
ttc, translationTool,
"transToolWindowPos",
new TranslationToolComponent(),
translationTool,
600, 700,
500, 400, 10000, 10000);
600, 400, 10000, 10000);
}
}