Skip to content

Commit c543f8c

Browse files
committed
Always build as debug
1 parent 9f9df36 commit c543f8c

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

terminal/dropdown.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ void Dropdown::newTab(QString workDir) {
5353
QPushButton* button = new QPushButton();
5454
widget->setContextMenuPolicy(Qt::CustomContextMenu);
5555
button->setCheckable(true);
56+
button->setFocusPolicy(Qt::NoFocus);
5657
ui->stackedTabs->addWidget(widget);
5758
terminalButtons.insert(widget, button);
5859

terminal/terminal.pro

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#-------------------------------------------------
66

77
QT += core gui x11extras thelib
8-
CONFIG += c++14
8+
CONFIG += c++14 debug
99
LIBS += -lX11
1010

1111
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
@@ -14,7 +14,6 @@ TEMPLATE = app
1414
LIBS += -ltttermwidget
1515

1616
blueprint {
17-
message(Configuring theTerminal to be built as blueprint)
1817
TARGET = theterminalb
1918
DEFINES += "BLUEPRINT"
2019
} else {

theterminal.pro

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ TEMPLATE = subdirs
33
SUBDIRS += \
44
terminal
55

6-
76
blueprint {
87
message(Configuring theTerminal to be built as blueprint)
98
DEFINES += "BLUEPRINT"

0 commit comments

Comments
 (0)