Adjust toolbar to better fit mobile devices
| 195 | #if defined(VK_USE_PLATFORM_IOS_MVK) || defined(VK_USE_PLATFORM_ANDROID_KHR) |
| 196 | // Adjust toolbar to better fit mobile devices |
| 197 | foreach (QToolButton *toolButton, findChildren<QToolButton *>()) { |
| 198 | toolButton->setToolButtonStyle(Qt::ToolButtonIconOnly); |
| 199 | } |
| 200 | ui.toolButtonSave->setVisible(false); |
| 201 | // Touch scrolling |
| 202 | foreach (QTreeView *widget, findChildren<QTreeWidget *>()) { |
nothing calls this directly
no test coverage detected