| 7 | #include "UIDefines.h" |
| 8 | |
| 9 | UpdateCheck::UpdateCheck() |
| 10 | { |
| 11 | mUrlButton.setButtonText("See update"); |
| 12 | mUrlButton.setURL(mLatestReleaseUrl); |
| 13 | mUrlButton.setFont(UIDefines::LABEL_FONT(), false); |
| 14 | mUrlButton.setJustificationType(Justification::centred); |
| 15 | mUrlButton.setColour(HyperlinkButton::ColourIds::textColourId, Colours::blue); |
| 16 | addAndMakeVisible(mUrlButton); |
| 17 | } |
| 18 | |
| 19 | void UpdateCheck::resized() |
| 20 | { |
nothing calls this directly
no test coverage detected