Skip to content

Commit

Permalink
Revert "Drop all references to Xilium.CefGlue (#442)"
Browse files Browse the repository at this point in the history
This reverts commit aa58b7f.

Speculatively reverting as the most likely cause of #477.
  • Loading branch information
quisquous committed Jul 23, 2019
1 parent e3ade27 commit 69bd447
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion CactbotOverlay/CactbotOverlay.cs
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ private void SendSlowRateEvents() {
private int SendFastRateEvents() {
// Handle startup and shutdown. And do not fire any events until the page has loaded and had a chance to
// register its event handlers.
if (Overlay == null || Overlay.Renderer == null) {
if (Overlay == null || Overlay.Renderer == null || Overlay.Renderer.Browser == null || Overlay.Renderer.Browser.IsLoading) {
return kSlowTimerMilli;
}

Expand Down
4 changes: 4 additions & 0 deletions CactbotOverlay/CactbotOverlay.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,10 @@
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
<Reference Include="Xilium.CefGlue, Version=3.2272.2035.0, Culture=neutral, PublicKeyToken=6235298024de30d5, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>ThirdParty\OverlayPlugin\Xilium.CefGlue.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="CactbotOverlay.cs" />
Expand Down

0 comments on commit 69bd447

Please sign in to comment.