1
0
mirror of https://github.com/odrling/Aegisub synced 2025-04-11 22:56:02 +02:00

Remove incorrect ! in check for changed calltip position

This commit is contained in:
Thomas Goyne 2013-09-16 07:58:06 -07:00
parent af2028e971
commit e72e183f27

View File

@ -253,7 +253,7 @@ void SubsTextEditCtrl::UpdateCallTip() {
if (!OPT_GET("App/Call Tips")->GetBool()) return;
int pos = GetCurrentPos();
if (!pos == cursor_pos) return;
if (pos == cursor_pos) return;
cursor_pos = pos;
if (!calltip_provider)