Don't show the properties page (in library pane) for interactivities, applications and animations

preferencesAboutTextFull
Craig Watson 7 years ago
parent 881a1d5011
commit 0d7d9b0424
  1. 7
      src/gui/UBFeaturesWidget.cpp

@ -174,7 +174,12 @@ void UBFeaturesWidget::currentSelected(const QModelIndex &current)
// } else if (feature.getType() == FEATURE_SEARCH) {
// centralWidget->showElement(feature, UBFeaturesCentralWidget::FeaturesWebView);
} else {
}
// Don't show the properties page for interactivities, applications and animations
else if (feature.getType() != FEATURE_INTERACTIVE
&& feature.getType() != FEATURE_INTERNAL
&& feature.getType() != FEATURE_FLASH)
{
centralWidget->showElement(feature, UBFeaturesCentralWidget::FeaturePropertiesList);
mActionBar->setCurrentState( IN_PROPERTIES );
}

Loading…
Cancel
Save