IDEA-152558 Allow to select and copy texts from the About dialog windows

This commit is contained in:
Vassiliy.Kudryashov
2016-03-24 20:38:38 +03:00
parent 3e688a897c
commit 53ab052dad
@@ -169,8 +169,10 @@ public class AboutPopup {
LicensingFacade provider = LicensingFacade.getInstance();
if (provider != null) {
myLines.add(new AboutBoxLine(provider.getLicensedToMessage(), true, null));
appendLast();
for (String message : provider.getLicenseRestrictionsMessages()) {
myLines.add(new AboutBoxLine(message));
appendLast();
}
}