Skip to content

Commit a83d0d3

Browse files
committed
CefSharpApp - Spaces not tabs
1 parent bec283f commit a83d0d3

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

CefSharp.Core/Internals/CefSharpApp.h

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -110,12 +110,12 @@ namespace CefSharp
110110
CefString name = StringUtils::ToNative(kvp->Key);
111111
CefString value = StringUtils::ToNative(kvp->Value);
112112

113-
if (kvp->Key == "disable-features")
114-
{
115-
//Temp workaround so we can set the disable-features command line argument
116-
// See https://github.com/cefsharp/CefSharp/issues/2408
117-
commandLine->AppendSwitchWithValue(name, value);
118-
}
113+
if (kvp->Key == "disable-features")
114+
{
115+
//Temp workaround so we can set the disable-features command line argument
116+
// See https://github.com/cefsharp/CefSharp/issues/2408
117+
commandLine->AppendSwitchWithValue(name, value);
118+
}
119119
// Right now the command line args handed to the application (global command line) have higher
120120
// precedence than command line args provided by the app
121121
else if(!commandLine->HasSwitch(name))

0 commit comments

Comments
 (0)