Skip to content

Commit

Permalink
Fix state of "Close when completed" checkbox on "File transfer" dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
CoBC committed Oct 9, 2023
1 parent 44f54a8 commit af17e74
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions ChangeLog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
Version 5.15, unreleased
Default Qt Client
- PulseAudio support on Ubuntu 22
- Fixed state of "Close when completed" checkbox on "Transfer file" dialog
Android Client
- Fixed importing of tt files on newer android versions
- It is now possible to select a language of TeamTalk on Android 13 and above from app languages settings.
Expand Down
2 changes: 2 additions & 0 deletions Client/qtTeamTalk/filetransferdlg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ FileTransferDlg::FileTransferDlg(const FileTransfer& transfer, QWidget* parent)
m_timerid = startTimer(1000);

updateFileTransfer(transfer);

ui.closeChkBox->setChecked(ttSettings->value(SETTINGS_DISPLAY_CLOSE_FILEDIALOG, SETTINGS_DISPLAY_CLOSE_FILEDIALOG_DEFAULT).toBool());
}

void FileTransferDlg::timerEvent(QTimerEvent* event)
Expand Down

0 comments on commit af17e74

Please sign in to comment.