Skip to content

Commit f4079ab

Browse files
committed
Update text for license agreement
1 parent ea2299b commit f4079ab

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

tools/setup/install_phases/component_license.cpp

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ ComponentLicense::ComponentLicense()
1111
title.setFont(EarFontsSingleton::instance().HeroHeading);
1212
title.setColour(Label::textColourId, EarColours::Heading);
1313
title.setJustificationType(Justification::bottomLeft);
14-
title.setText("License Agreement",
14+
title.setText("Terms of Use - License Agreement",
1515
juce::NotificationType::dontSendNotification);
1616
addAndMakeVisible(title);
1717

1818
description.setFont(EarFontsSingleton::instance().Label);
1919
description.setColour(Label::textColourId, EarColours::Label);
2020
description.setJustificationType(Justification::centredLeft);
21-
description.setText("The EAR Production Suite carries the GPLv3 License.\n"
22-
"Please read the following license agreement. You must agree to the terms of this agreement before continuing.",
21+
description.setText("Your download and use of the EAR Production Suite is subject to your agreement that the terms of GPLv3 (the GNU General Public License v3.0) will govern such download and use. "
22+
"You must agree to the GPLv3 terms, as set out below, before continuing.",
2323
juce::NotificationType::dontSendNotification);
2424
addAndMakeVisible(description);
2525

@@ -78,6 +78,7 @@ void ComponentLicense::resized()
7878
exitButton.setBounds(rightButtonArea);
7979

8080
// Remaining area is flexible for textbox
81+
area.removeFromTop(10);
8182
auto sideTrim = (area.getWidth() - 600) / 2;
8283
if (sideTrim < 10) sideTrim = 10;
8384
license.setBounds(area.reduced(sideTrim, 5));

0 commit comments

Comments
 (0)