Skip to content

Commit ced20df

Browse files
committed
Modify plugin update notification message
1 parent 6964897 commit ced20df

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

Source/UI/UIComponent.cpp

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -487,9 +487,9 @@ void UIComponent::checkForPluginUpdates()
487487
{
488488
MessageManager::callAsync ([this, numUpdates]()
489489
{
490-
String message = String (numUpdates) + " plugin update" + (numUpdates > 1 ? "s" : "")
491-
+ " available. Open the Plugin Installer to update.";
492-
490+
String message = String (numUpdates) + " plugin update"
491+
+ (numUpdates > 1 ? "s" : "") + " available";
492+
493493
AttributedString s;
494494
s.setText (message);
495495
s.setColour (findColour (ThemeColours::defaultText));
@@ -499,8 +499,7 @@ void UIComponent::checkForPluginUpdates()
499499

500500
bubbleMsgComponent->showAt ({5, 5, 195, 32}, s, 4000);
501501
});
502-
}
503-
});
502+
} });
504503
}
505504

506505
void UIComponent::showBubbleMessage (Component* component, const String& message)

0 commit comments

Comments
 (0)