Changeset 104054 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Mar 26, 2024 8:52:58 AM (12 months ago)
- svn:sync-xref-src-repo-rev:
- 162446
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIVersion.cpp
r103793 r104054 211 211 bool UIVersionInfo::isBeta() 212 212 { 213 #if defined(RT_ARCH_ARM64) || defined(RT_ARCH_ARM32) 214 return true; 215 #else 213 216 return vboxVersionString().contains(QRegularExpression("BETA|ALPHA", QRegularExpression::CaseInsensitiveOption)); 217 #endif 214 218 } 215 219 -
trunk/src/VBox/Frontends/VirtualBox/src/manager/UIVirtualBoxManagerWidget.cpp
r103793 r104054 677 677 m_pToolBar->setContextMenuPolicy(Qt::CustomContextMenu); 678 678 m_pToolBar->setUseTextLabels(true); 679 #ifdef VBOX_WS_MAC 680 m_pToolBar->emulateMacToolbar(); 679 #if defined(RT_ARCH_ARM64) || defined(RT_ARCH_ARM32) 681 680 /* Branding stuff for Qt6 beta: */ 682 681 if (UIVersionInfo::showBetaLabel()) 682 { 683 # ifdef VBOX_WS_MAC 684 m_pToolBar->emulateMacToolbar(); 685 # endif /* VBOX_WS_MAC */ 683 686 m_pToolBar->enableBranding(UIIconPool::iconSet(":/explosion_hazard_32px.png"), 684 687 "Dev Preview", // do we need to make it NLS? 685 688 QColor(246, 179, 0), 686 689 74 /* width of BETA label */); 687 #endif /* VBOX_WS_MAC */ 690 } 691 #endif /* defined(RT_ARCH_ARM64) || defined(RT_ARCH_ARM32) */ 688 692 689 693 /* Add toolbar into layout: */
Note:
See TracChangeset
for help on using the changeset viewer.