Enable terminal resizing from the emulator

The pieces were all already there, but not connected.
This commit is contained in:
Paulo Lieuthier
2015-11-05 14:38:21 -03:00
parent 72ffc262eb
commit 0ae52e5bf3
3 changed files with 9 additions and 8 deletions
+3 -3
View File
@@ -94,9 +94,9 @@ Session::Session(QObject* parent) :
this, SIGNAL( changeTabTextColorRequest( int ) ) );
connect( _emulation, SIGNAL(profileChangeCommandReceived(const QString &)),
this, SIGNAL( profileChangeCommandReceived(const QString &)) );
// TODO
// connect( _emulation,SIGNAL(imageSizeChanged(int,int)) , this ,
// SLOT(onEmulationSizeChange(int,int)) );
connect(_emulation, SIGNAL(imageSizeChanged(int, int)),
this, SLOT(onEmulationSizeChange(int, int)));
//connect teletype to emulation backend
_shellProcess->setUtf8Mode(_emulation->utf8());