My terminal is currently displaying a blank screen,
-


My terminal is currently showing as blank, and no buttons are responding.
After I installed it, it was like this without changing the configuration file. I tried many methods but couldn't fix it. Can you tell me how to do it and help me.
It should have been like this below,
-
C Christian Ehrlicher moved this topic from General and Desktop on
-
Hi and welcome to devnet,
You need to provide more information:
- Windows version
- Qt Creator version
- Method of installation
- What exactly you did
-


My terminal is currently showing as blank, and no buttons are responding.
After I installed it, it was like this without changing the configuration file. I tried many methods but couldn't fix it. Can you tell me how to do it and help me.
It should have been like this below,
@873578156 This sounds like QTCREATORBUG-32192: Unresponsive Qt Creator on close built-in terminal, which was fixed in Qt Creator 15.0.1.
It's not quite identical. That's why some more information would be welcomed.
-
@873578156 said in My terminal is currently displaying a blank screen,:
me too and long time。
Not to be rude but this does not help. Both @cristian-adam and me asked for more information to help you so please provide them.
-
sys:windows 10 enterprise ltsc 2019 10.0.17763,
Qt Creator: 18.0.0
Installation method: Online installation
What did he do: He didn't do anything, it was like this after he installed itI have tested it and it is available on Windows 10 Enterprise LTSC 2021, but the 2021 version will be discontinued next year, and the 2019 version still has a 4-year support period.
-
sys:windows 10 enterprise ltsc 2019 10.0.17763,
Qt Creator: 18.0.0
Installation method: Online installation
What did he do: He didn't do anything, it was like this after he installed itI have tested it and it is available on Windows 10 Enterprise LTSC 2021, but the 2021 version will be discontinued next year, and the 2019 version still has a 4-year support period.
@873578156 Right, the issue here is that Windows 10 doesn't have the
ConPTYcapability andWinPTYis being used by Qt Creator.As seen in the code as:
bool PtyQt::isUsingConPTY() { #ifdef Q_OS_WIN if (ConPtyProcess::isAvailable() && qgetenv("QTC_USE_WINPTY").isEmpty()) return true; #endif return false; }I've created https://qt-project.atlassian.net/browse/QTCREATORBUG-33876 for this.
-
@873578156 Right, the issue here is that Windows 10 doesn't have the
ConPTYcapability andWinPTYis being used by Qt Creator.As seen in the code as:
bool PtyQt::isUsingConPTY() { #ifdef Q_OS_WIN if (ConPtyProcess::isAvailable() && qgetenv("QTC_USE_WINPTY").isEmpty()) return true; #endif return false; }I've created https://qt-project.atlassian.net/browse/QTCREATORBUG-33876 for this.
@873578156 I've fixed the bug yesterday and merged the fix today, check a Qt Creator 18.0.2 snapshot https://download.qt.io/snapshots/qtcreator/18.0/18.0.2/ tomorrow.