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 and UniversalSuperBox committed Jan 29, 2021
1 parent 8b0ea20 commit 027d0f0
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 @@ -547,11 +547,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 027d0f0

Please sign in to comment.