Skip to content

Commit

Permalink
Updated to NoesisGUI 3.1.4 version
Browse files Browse the repository at this point in the history
  • Loading branch information
s-fernandez-v committed Mar 18, 2022
1 parent 3155dba commit c315b74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Src/NoesisApp/Controls/WebBrowser/Src/WebBrowser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1256,7 +1256,7 @@ protected override CefResourceHandler Create(CefBrowser browser_, CefFrame frame
int lastAmpersand = reply.LastIndexOf('&');
int firstAmpersand = reply.LastIndexOf('&', lastAmpersand - 1);
content = reply.Substring(0, firstAmpersand);
string type = reply.Substring(firstAmpersand + 1, lastAmpersand);
string type = reply.Substring(firstAmpersand + 1, lastAmpersand - firstAmpersand - 1);
if (type == "password")
{
browser._virtualKeyboardRequestedArgs.InputScope = InputScope.Password;
Expand Down

0 comments on commit c315b74

Please sign in to comment.