forked from qt-creator/qt-creator
Plugin manager for enabling/disabling plugins
Go to About Plugins and enable/disable plugins from there. Reviewed-by: mae
This commit is contained in:
@@ -78,6 +78,10 @@ void PluginDetailsView::update(PluginSpec *spec)
|
||||
m_ui->vendor->setText(spec->vendor());
|
||||
const QString link = QString::fromLatin1("<a href=\"%1\">%1</a>").arg(spec->url());
|
||||
m_ui->url->setText(link);
|
||||
QString component = tr("None");
|
||||
if (!spec->category().isEmpty())
|
||||
component = spec->category();
|
||||
m_ui->component->setText(component);
|
||||
m_ui->location->setText(QDir::toNativeSeparators(spec->filePath()));
|
||||
m_ui->description->setText(spec->description());
|
||||
m_ui->copyright->setText(spec->copyright());
|
||||
|
||||
Reference in New Issue
Block a user