Make sure that the output folder label is updated when the output folder (tree item) is changed via keyboard.
This commit is contained in:
parent
df671a7be2
commit
ca1c1b46d4
@ -146,6 +146,7 @@ MainWindow::MainWindow(FileListModel *fileListModel, AudioFileModel *metaInfo, S
|
|||||||
outputFolderView->setAnimated(false);
|
outputFolderView->setAnimated(false);
|
||||||
outputFolderView->setMouseTracking(false);
|
outputFolderView->setMouseTracking(false);
|
||||||
outputFolderView->setContextMenuPolicy(Qt::CustomContextMenu);
|
outputFolderView->setContextMenuPolicy(Qt::CustomContextMenu);
|
||||||
|
outputFolderView->installEventFilter(this);
|
||||||
while(saveToSourceFolderCheckBox->isChecked() != m_settings->outputToSourceDir()) saveToSourceFolderCheckBox->click();
|
while(saveToSourceFolderCheckBox->isChecked() != m_settings->outputToSourceDir()) saveToSourceFolderCheckBox->click();
|
||||||
prependRelativePathCheckBox->setChecked(m_settings->prependRelativeSourcePath());
|
prependRelativePathCheckBox->setChecked(m_settings->prependRelativeSourcePath());
|
||||||
connect(outputFolderView, SIGNAL(clicked(QModelIndex)), this, SLOT(outputFolderViewClicked(QModelIndex)));
|
connect(outputFolderView, SIGNAL(clicked(QModelIndex)), this, SLOT(outputFolderViewClicked(QModelIndex)));
|
||||||
@ -819,10 +820,25 @@ void MainWindow::resizeEvent(QResizeEvent *event)
|
|||||||
*/
|
*/
|
||||||
bool MainWindow::eventFilter(QObject *obj, QEvent *event)
|
bool MainWindow::eventFilter(QObject *obj, QEvent *event)
|
||||||
{
|
{
|
||||||
if(obj == m_fileSystemModel && QApplication::overrideCursor() == NULL)
|
if(obj == m_fileSystemModel)
|
||||||
{
|
{
|
||||||
QApplication::setOverrideCursor(QCursor(Qt::WaitCursor));
|
if(QApplication::overrideCursor() == NULL)
|
||||||
QTimer::singleShot(250, this, SLOT(restoreCursor()));
|
{
|
||||||
|
QApplication::setOverrideCursor(QCursor(Qt::WaitCursor));
|
||||||
|
QTimer::singleShot(250, this, SLOT(restoreCursor()));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if(obj == outputFolderView)
|
||||||
|
{
|
||||||
|
switch(event->type())
|
||||||
|
{
|
||||||
|
case QEvent::Enter:
|
||||||
|
case QEvent::Leave:
|
||||||
|
case QEvent::KeyPress:
|
||||||
|
case QEvent::KeyRelease:
|
||||||
|
outputFolderViewClicked(outputFolderView->currentIndex());
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else if(obj == outputFolderLabel)
|
else if(obj == outputFolderLabel)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user