Skip to content
This repository has been archived by the owner on Jan 22, 2022. It is now read-only.

Commit

Permalink
Update AddressBar.qml
Browse files Browse the repository at this point in the history
correct addressBar.text -> addressbar.text
  • Loading branch information
balcy authored Nov 25, 2020
1 parent 103e68d commit 5baad61
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/webbrowser/AddressBar.qml
Original file line number Diff line number Diff line change
Expand Up @@ -543,11 +543,11 @@ FocusScope {
textField.text = "";
} else if (canSimplifyText) {
textField.text = internal.simplifyUrl(actualUrl);
addressBar.text = textField.text;
addressbar.text = textField.text;
internal.simplified = true;
} else {
textField.text = actualUrl;
addressBar.text = textField.text;
addressbar.text = textField.text;
internal.simplified = false;
}
}
Expand Down

0 comments on commit 5baad61

Please sign in to comment.