aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/desktop-utils/lumina-terminal/TtyProcess.h
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2016-12-07 13:12:27 -0500
committerKen Moore <ken@ixsystems.com>2016-12-07 13:12:27 -0500
commite4f0a0c307e7b3eb1ec820777a1d15e38826d8b0 (patch)
tree8625b3bbbd587ce8dcd576b6aeaec979ce3a4741 /src-qt5/desktop-utils/lumina-terminal/TtyProcess.h
parentAdd some more filtering for mouse devices: (diff)
downloadlumina-e4f0a0c307e7b3eb1ec820777a1d15e38826d8b0.tar.gz
lumina-e4f0a0c307e7b3eb1ec820777a1d15e38826d8b0.tar.bz2
lumina-e4f0a0c307e7b3eb1ec820777a1d15e38826d8b0.zip
Cleanup some more of the terminal functionality:
1) Auto-hide the window when it loses focus 2) Give the terminal widget focus when it is clicked on 3) When starting the PTY do one interaction with it programmatically to ensure it is *really* ready before the user starts using it.
Diffstat (limited to 'src-qt5/desktop-utils/lumina-terminal/TtyProcess.h')
-rw-r--r--src-qt5/desktop-utils/lumina-terminal/TtyProcess.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src-qt5/desktop-utils/lumina-terminal/TtyProcess.h b/src-qt5/desktop-utils/lumina-terminal/TtyProcess.h
index 9b3873b0..1603fe5e 100644
--- a/src-qt5/desktop-utils/lumina-terminal/TtyProcess.h
+++ b/src-qt5/desktop-utils/lumina-terminal/TtyProcess.h
@@ -60,6 +60,7 @@ private:
int ttyfd;
QSocketNotifier *sn;
QByteArray fragBA; //fragment ByteArray
+ bool starting;
//====================================
// C Library function for setting up the PTY
bgstack15