Skip to content

Commit

Permalink
eliminate information re ADL support in Help->About dialog box
Browse files Browse the repository at this point in the history
mainwindow.cpp:
- MainWindow::on_actionAbout_triggered();
  - eleminiate line re support for ADL connected monitors, since
    support for ADL has been removed from ddcutil
  • Loading branch information
rockowitz committed Jun 28, 2020
1 parent dcbc272 commit 46dba4e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -932,7 +932,7 @@ void MainWindow::on_actionAbout_triggered()
{
QString ddcutil_version = ddca_ddcutil_version_string();
uint8_t build_opts = ddca_build_options();
QString ans1 = (build_opts & DDCA_BUILT_WITH_ADL) ? "true" : "false";
// QString ans1 = (build_opts & DDCA_BUILT_WITH_ADL) ? "true" : "false";
QString ans2 = (build_opts & DDCA_BUILT_WITH_USB) ? "true" : "false";
QString ans3 = (ddca_is_udf_enabled()) ? "true" : "false";

Expand All @@ -943,7 +943,7 @@ void MainWindow::on_actionAbout_triggered()
msg = msg + "ddcui version: " + ddcui_version + "\n";
msg = msg + " User defined features enabled: " + ans3 + "\n\n";
msg = msg + "ddcutil version: " + ddcutil_version + "\n";
msg = msg + " Built with support for ADL connected monitors: " + ans1 + "\n";
// msg = msg + " Built with support for ADL connected monitors: " + ans1 + "\n";
msg = msg + " Built with support for USB connected monitors: " + ans2;
// mbox.setInformativeText(msg);
// mbox.exec();
Expand Down

0 comments on commit 46dba4e

Please sign in to comment.