Changeset 93442 in vbox for trunk/src/VBox
- Timestamp:
- Jan 26, 2022 4:31:56 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/guestctrl/UIFileManagerGuestTable.cpp
r93186 r93442 1075 1075 pContainerLayout->addWidget(m_pWarningLabel); 1076 1076 m_pWarningLabel->setSizePolicy(QSizePolicy::Minimum, QSizePolicy::Maximum); 1077 m_pWarningLabel->setVisible(false);1078 1077 } 1079 1078 } … … 1398 1397 case State_NoGuestAdditions: 1399 1398 setSessionWidgetsEnabled(false); 1400 m_pWarningLabel ->setVisible(true);1399 m_pWarningLabelContainer->setVisible(true); 1401 1400 m_pGuestSessionPanel->setEnabled(false); 1402 1401 if (m_pGuestSessionPanel) … … 1405 1404 case State_SessionPossible: 1406 1405 setSessionWidgetsEnabled(false); 1407 m_pWarningLabel ->setVisible(true);1406 m_pWarningLabelContainer->setVisible(true); 1408 1407 m_pGuestSessionPanel->setEnabled(true); 1409 1408 if (m_pGuestSessionPanel) … … 1412 1411 case State_SessionRunning: 1413 1412 setSessionWidgetsEnabled(true); 1414 m_pWarningLabel ->setVisible(false);1413 m_pWarningLabelContainer->setVisible(false); 1415 1414 m_pGuestSessionPanel->setEnabled(true); 1416 1415 if (m_pGuestSessionPanel)
Note:
See TracChangeset
for help on using the changeset viewer.