mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-16 02:03:07 -07:00
Use the same icon for selecting folders/files
As stated in Qt doc, the `QStyle::SP_DialogOpenButton` is only for a button within QDialogButtonBox which means it isn't suitable elsewhere.
This commit is contained in:
parent
4ed99ba851
commit
b29a52dfa8
1 changed files with 1 additions and 6 deletions
|
@ -155,26 +155,21 @@ QString FileSystemPathEdit::FileSystemPathEditPrivate::dialogCaptionOrDefault()
|
||||||
|
|
||||||
void FileSystemPathEdit::FileSystemPathEditPrivate::modeChanged()
|
void FileSystemPathEdit::FileSystemPathEditPrivate::modeChanged()
|
||||||
{
|
{
|
||||||
QStyle::StandardPixmap pixmap = QStyle::SP_DialogOpenButton;
|
|
||||||
bool showDirsOnly = false;
|
bool showDirsOnly = false;
|
||||||
switch (m_mode)
|
switch (m_mode)
|
||||||
{
|
{
|
||||||
case FileSystemPathEdit::Mode::FileOpen:
|
case FileSystemPathEdit::Mode::FileOpen:
|
||||||
case FileSystemPathEdit::Mode::FileSave:
|
case FileSystemPathEdit::Mode::FileSave:
|
||||||
#ifdef Q_OS_WIN
|
|
||||||
pixmap = QStyle::SP_DirOpenIcon;
|
|
||||||
#endif
|
|
||||||
showDirsOnly = false;
|
showDirsOnly = false;
|
||||||
break;
|
break;
|
||||||
case FileSystemPathEdit::Mode::DirectoryOpen:
|
case FileSystemPathEdit::Mode::DirectoryOpen:
|
||||||
case FileSystemPathEdit::Mode::DirectorySave:
|
case FileSystemPathEdit::Mode::DirectorySave:
|
||||||
pixmap = QStyle::SP_DirOpenIcon;
|
|
||||||
showDirsOnly = true;
|
showDirsOnly = true;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
throw std::logic_error("Unknown FileSystemPathEdit mode");
|
throw std::logic_error("Unknown FileSystemPathEdit mode");
|
||||||
}
|
}
|
||||||
m_browseAction->setIcon(QApplication::style()->standardIcon(pixmap));
|
m_browseAction->setIcon(QApplication::style()->standardIcon(QStyle::SP_DirOpenIcon));
|
||||||
m_editor->completeDirectoriesOnly(showDirsOnly);
|
m_editor->completeDirectoriesOnly(showDirsOnly);
|
||||||
|
|
||||||
m_validator->setExistingOnly(m_mode != FileSystemPathEdit::Mode::FileSave);
|
m_validator->setExistingOnly(m_mode != FileSystemPathEdit::Mode::FileSave);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue