mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-05-15 05:34:10 +02:00
10 lines
284 B
C#
10 lines
284 B
C#
using CefSharp;
|
|
|
|
namespace TweetDuck.Core.Handling{
|
|
class RequestHandlerBrowser : RequestHandler{
|
|
public override void OnRenderProcessTerminated(IWebBrowser browserControl, IBrowser browser, CefTerminationStatus status){
|
|
browser.Reload();
|
|
}
|
|
}
|
|
}
|