Browse Source

[GTK3] Timers should have lower priority than Signal()

pull/1105/head
Nikita Tsukanov 9 years ago
parent
commit
7c1245829d
  1. 2
      src/Gtk/Avalonia.Gtk3/Interop/GlibTimeout.cs

2
src/Gtk/Avalonia.Gtk3/Interop/GlibTimeout.cs

@ -55,7 +55,7 @@ namespace Avalonia.Gtk3.Interop
public static IDisposable StarTimer(uint interval, Action tick)
{
var timer = new Timer ();
GlibTimeout.Add(interval,
GlibTimeout.Add(101, interval,
() =>
{
if (timer.Stopped)

Loading…
Cancel
Save