Skip to content

Commit

Permalink
improve tooltip
Browse files Browse the repository at this point in the history
  • Loading branch information
toloudis committed Feb 22, 2024
1 parent 2b01682 commit 7b1eea3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions agave_app/AppearanceSettingsWidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -232,9 +232,9 @@ QAppearanceSettingsWidget::createAreaLightingControls(QAction* pLightRotationAct

m_lt0gui.m_enableControlsCheckBox = new QCheckBox();
m_lt0gui.m_enableControlsCheckBox->setStatusTip(
tr("Show interactive controls in viewport for area light rotation angle"));
tr("Show interactive controls in viewport for area light rotation angle (or press R to toggle)"));
m_lt0gui.m_enableControlsCheckBox->setToolTip(
tr("Show interactive controls in viewport for area light rotation angle"));
tr("Show interactive controls in viewport for area light rotation angle (or press R to toggle)"));
sectionLayout->addRow("Viewport Controls", m_lt0gui.m_enableControlsCheckBox);
QObject::connect(m_lt0gui.m_enableControlsCheckBox, &QCheckBox::clicked, pLightRotationAction, &QAction::trigger);
QObject::connect(pLightRotationAction, &QAction::triggered, [this](bool toggled) {
Expand Down

0 comments on commit 7b1eea3

Please sign in to comment.