Hi,
I have built ParaView 5.0.0
in VS2013, 64 bit
based on Qt 4.8.6,
with OpenGL2 render engine in DEBUG and RELEASE mode
on a Win8.1 64 bit system,
OpenGL version 4.5.0 NVIDIA 355.82,
OpenGL renderer GeForce GTX 970/PCIe/SSE2.
So far everything looks good except the big submenu item opened after clicking
on Filters/Alphabetical just renders the first column of filters correctly.
Starting with the second submenu column, only icons are displayed centred (if
available) but no text is shown.
So there is a 3 column submenu with the first column ok, the 2nd column only
with icons and the 3rd column totally empty.
I tracked void pqProxyGroupMenuManager::populateMenu() method in
\ApplicationComponents\pqProxyGroupMenuManager.cxx
// Now sort all actions added in temp based on their texts.
qSort(someActions.begin(), someActions.end(), ::actionTextSort);
foreach (QAction* action, someActions)
{
alphabeticalMenu->addAction(action);
//Check if everything is all right:
auto msg = action->font().family();
qDebug() << "-----------Adding Action > " << action->text() << " isVisible=
" << action->isVisible() << " Font " << msg;
}
But all actions have a text and are visible...
Has anyone else experienced the same weird thing???
_______________________________________________
Powered by www.kitware.com
Visit other Kitware open-source projects at
http://www.kitware.com/opensource/opensource.html
Please keep messages on-topic and check the ParaView Wiki at:
http://paraview.org/Wiki/ParaView
Search the list archives at: http://markmail.org/search/?q=ParaView
Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/paraview