Skip to content

Commit 3b49afb

Browse files
committed
added button tooltips
1 parent 1bd923a commit 3b49afb

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

plugins/gui/src/main_window/main_window.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -739,8 +739,12 @@ namespace hal
739739
{
740740
QMessageBox optBox;
741741
QPushButton* newBtn = optBox.addButton("New", QMessageBox::AcceptRole);
742+
newBtn->setToolTip("Create new gate library");
742743
QPushButton* openBtn = optBox.addButton(QMessageBox::Open);
744+
openBtn->setToolTip("Open existing gate library");
743745
QPushButton* cancelBtn = optBox.addButton(QMessageBox::Cancel);
746+
cancelBtn->setToolTip("Cancel");
747+
744748
optBox.setText("Gate Library Manager");
745749

746750
auto btn = optBox.exec();

0 commit comments

Comments
 (0)