We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1bd923a commit 3b49afbCopy full SHA for 3b49afb
plugins/gui/src/main_window/main_window.cpp
@@ -739,8 +739,12 @@ namespace hal
739
{
740
QMessageBox optBox;
741
QPushButton* newBtn = optBox.addButton("New", QMessageBox::AcceptRole);
742
+ newBtn->setToolTip("Create new gate library");
743
QPushButton* openBtn = optBox.addButton(QMessageBox::Open);
744
+ openBtn->setToolTip("Open existing gate library");
745
QPushButton* cancelBtn = optBox.addButton(QMessageBox::Cancel);
746
+ cancelBtn->setToolTip("Cancel");
747
+
748
optBox.setText("Gate Library Manager");
749
750
auto btn = optBox.exec();
0 commit comments