mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-05-29 20:34:05 +02:00
Fix video player tooltip going outside Form bounds
This commit is contained in:
parent
05510d7bc1
commit
6d779f17b3
@ -1,5 +1,4 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Diagnostics;
|
|
||||||
using System.Drawing;
|
using System.Drawing;
|
||||||
using System.Windows.Forms;
|
using System.Windows.Forms;
|
||||||
|
|
||||||
@ -19,10 +18,14 @@ public void AttachTooltip(Control control, bool followCursor, Func<MouseEventArg
|
|||||||
|
|
||||||
control.MouseMove += (sender, args) => {
|
control.MouseMove += (sender, args) => {
|
||||||
Form form = control.FindForm();
|
Form form = control.FindForm();
|
||||||
Debug.Assert(form != null);
|
System.Diagnostics.Debug.Assert(form != null);
|
||||||
|
|
||||||
Text = tooltipFunc(args);
|
Text = tooltipFunc(args);
|
||||||
Location = form.PointToClient(control.Parent.PointToScreen(new Point(control.Location.X-Width/2+(followCursor ? args.X : control.Width/2), -Height+Margin.Top-Margin.Bottom)));;
|
|
||||||
|
Point loc = form.PointToClient(control.Parent.PointToScreen(new Point(control.Location.X+(followCursor ? args.X : control.Width/2), 0)));
|
||||||
|
loc.X = Math.Max(0, Math.Min(form.Width-Width, loc.X-Width/2));
|
||||||
|
loc.Y -= Height-Margin.Top+Margin.Bottom;
|
||||||
|
Location = loc;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user