mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-10-19 17:11:15 +02:00
2024-08-16 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug in the 'Edit Download' dialog in rdcatch(1) that caused the 'Username' and 'Password' controls to be disabled when entering a URL scheme of 'https'. Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
@@ -309,8 +309,8 @@ void EditDownload::urlChangedData(const QString &str)
|
||||
{
|
||||
QUrl url(str);
|
||||
QString scheme=url.scheme();
|
||||
if((scheme=="ftp")||(scheme=="ftps")||(scheme=="http")||(scheme=="file")||
|
||||
(scheme=="scp")||(scheme=="sftp")) {
|
||||
if((scheme=="ftp")||(scheme=="ftps")||(scheme=="http")||(scheme=="https")||
|
||||
(scheme=="file")||(scheme=="scp")||(scheme=="sftp")) {
|
||||
edit_username_label->setEnabled(true);
|
||||
edit_username_edit->setEnabled(true);
|
||||
edit_password_label->setEnabled(true);
|
||||
|
Reference in New Issue
Block a user