Changeset 89539 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Jun 7, 2021 8:02:49 AM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 144897
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/helpbrowser/UIHelpBrowserWidget.cpp
r89410 r89539 793 793 { 794 794 if (m_pContentViewer) 795 { 795 796 m_pContentViewer->forward(); 797 /* when we dont reload our overload imag hack does not work and images look ugly: */ 798 m_pContentViewer->reload(); 799 } 796 800 } 797 801 … … 799 803 { 800 804 if (m_pContentViewer) 805 { 801 806 m_pContentViewer->backward(); 807 /* when we dont reload our overload imag hack does not work and images look ugly: */ 808 m_pContentViewer->reload(); 809 } 802 810 } 803 811 … … 1469 1477 1470 1478 m_pBackwardAction = new QAction(this); 1479 m_pBackwardAction->setShortcut(QKeySequence::Back); 1471 1480 connect(m_pBackwardAction, &QAction::triggered, 1472 1481 this, &UIHelpBrowserWidget::sigGoBackward); … … 1474 1483 1475 1484 m_pForwardAction = new QAction(this); 1485 m_pForwardAction->setShortcut(QKeySequence::Forward); 1476 1486 connect(m_pForwardAction, &QAction::triggered, 1477 1487 this, &UIHelpBrowserWidget::sigGoForward); … … 1483 1493 1484 1494 m_pReloadPageAction = new QAction(this); 1495 m_pReloadPageAction->setShortcut(QKeySequence::Refresh); 1485 1496 connect(m_pReloadPageAction, &QAction::triggered, 1486 1497 this, &UIHelpBrowserWidget::sigReloadPage); 1487 1498 1488 1499 m_pAddBookmarkAction = new QAction(this); 1500 m_pAddBookmarkAction->setShortcut(QKeySequence("Ctrl+D")); 1489 1501 connect(m_pAddBookmarkAction, &QAction::triggered, 1490 1502 this, &UIHelpBrowserWidget::sigAddBookmark); … … 1808 1820 m_pFindInPageAction->setText(tr("&Find in Page")); 1809 1821 if (m_pFindNextInPageAction) 1810 m_pFindNextInPageAction->setText(tr(" &Find Next"));1822 m_pFindNextInPageAction->setText(tr("Find Ne&xt")); 1811 1823 if (m_pFindPreviousInPageAction) 1812 m_pFindPreviousInPageAction->setText(tr(" &FindPrevious"));1824 m_pFindPreviousInPageAction->setText(tr("Find &Previous")); 1813 1825 1814 1826 if (m_pBackwardAction)
Note:
See TracChangeset
for help on using the changeset viewer.