mirror of https://github.com/odrling/Aegisub
Remove incorrect ! in check for changed calltip position
This commit is contained in:
parent
af2028e971
commit
e72e183f27
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue