forked from qt-creator/qt-creator
Make IOutputPane behaviour more granular
The commit looks big, but it's mostly trivial. Also any build/run related popups are now "flashes" if the current mode has no placeholder. Task-number: QTCREATORBUG-7875 Change-Id: I3af40557f7af01798f905c0d1829423c80058cb6 Reviewed-by: Eike Ziller <eike.ziller@nokia.com>
This commit is contained in:
@@ -309,7 +309,8 @@ void FetchContext::startWritePatchFile()
|
||||
|
||||
void FetchContext::startCherryPick()
|
||||
{
|
||||
VcsBase::VcsBaseOutputWindow::instance()->popup(); // Point user to errors.
|
||||
// Point user to errors.
|
||||
VcsBase::VcsBaseOutputWindow::instance()->popup(Core::IOutputPane::ModeSwitch | Core::IOutputPane::WithFocus);
|
||||
VcsBase::VcsBaseOutputWindow::instance()->append(tr("Cherry-picking %1...").arg(m_patchFileName));
|
||||
QStringList args;
|
||||
args << QLatin1String("cherry-pick") << QLatin1String("FETCH_HEAD");
|
||||
|
||||
Reference in New Issue
Block a user