We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be2a05b commit 401f38dCopy full SHA for 401f38d
1 file changed
Source/UI/PluginInstaller.cpp
@@ -1070,6 +1070,7 @@ void PluginInfoComponent::run()
1070
LOGD("Download Successfull!!");
1071
1072
pInfo.installedVersion = pInfo.selectedVersion;
1073
+ installedVerText.setText(pInfo.installedVersion, dontSendNotification);
1074
downloadButton.setEnabled(false);
1075
downloadButton.setButtonText("Installed");
1076
uninstallButton.setVisible(true);
@@ -1355,6 +1356,7 @@ bool PluginInfoComponent::uninstallPlugin(const String& plugin)
1355
1356
uninstallButton.setVisible(false);
1357
downloadButton.setEnabled(true);
1358
downloadButton.setButtonText("Install");
1359
+ installedVerText.setText("No", dontSendNotification);
1360
1361
return true;
1362
}
0 commit comments