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:
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…
x
Reference in New Issue
Block a user