Enabled the Script Canvas Minimap. It will be tested and any performance concerns will be addressed
Signed-off-by: lsemp3d <58790905+lsemp3d@users.noreply.github.com>
This commit is contained in:
@@ -791,11 +791,7 @@ namespace ScriptCanvasEditor
|
||||
|
||||
// View menu
|
||||
connect(ui->action_ViewNodePalette, &QAction::triggered, this, &MainWindow::OnViewNodePalette);
|
||||
|
||||
// Disabling the Minimap since it does not play nicely with the Qt caching solution
|
||||
// And causing some weird visual issues.
|
||||
connect(ui->action_ViewMiniMap, &QAction::triggered, this, &MainWindow::OnViewMiniMap);
|
||||
ui->action_ViewMiniMap->setVisible(false);
|
||||
|
||||
connect(ui->action_ViewProperties, &QAction::triggered, this, &MainWindow::OnViewProperties);
|
||||
connect(ui->action_ViewBookmarks, &QAction::triggered, this, &MainWindow::OnBookmarks);
|
||||
@@ -2774,14 +2770,12 @@ namespace ScriptCanvasEditor
|
||||
m_logPanel->hide();
|
||||
}
|
||||
|
||||
/* Disable Mini-map until we fix rendering performance
|
||||
if (m_minimap)
|
||||
{
|
||||
addDockWidget(Qt::LeftDockWidgetArea, m_minimap);
|
||||
m_minimap->setFloating(false);
|
||||
m_minimap->hide();
|
||||
m_minimap->show();
|
||||
}
|
||||
*/
|
||||
|
||||
if (m_nodePalette)
|
||||
{
|
||||
@@ -2825,14 +2819,12 @@ namespace ScriptCanvasEditor
|
||||
m_bookmarkDockWidget->hide();
|
||||
}
|
||||
|
||||
/* Disable mini-map until we fix rendering performance
|
||||
if (m_minimap)
|
||||
{
|
||||
addDockWidget(Qt::RightDockWidgetArea, m_minimap);
|
||||
m_minimap->setFloating(false);
|
||||
m_minimap->hide();
|
||||
m_minimap->show();
|
||||
}
|
||||
*/
|
||||
|
||||
resizeDocks(
|
||||
{ m_nodePalette, m_propertyGrid },
|
||||
|
||||
Reference in New Issue
Block a user