From c741470b6094d2d9cdf49e5a73345489821cf14e Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Thu, 23 May 2019 13:30:37 +0200 Subject: [PATCH] [calamares] Name the debug button for styling purposes --- src/calamares/CalamaresWindow.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/calamares/CalamaresWindow.cpp b/src/calamares/CalamaresWindow.cpp index 25c8432e2..626b8588c 100644 --- a/src/calamares/CalamaresWindow.cpp +++ b/src/calamares/CalamaresWindow.cpp @@ -132,6 +132,7 @@ CalamaresWindow::CalamaresWindow( QWidget* parent ) if ( Calamares::Settings::instance()->debugMode() ) { QPushButton* debugWindowBtn = new QPushButton; + debugWindowBtn->setObjectName( "debugButton" ); CALAMARES_RETRANSLATE( debugWindowBtn->setText( tr( "Show debug information" ) ); )