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
1 changed files with 1 additions and 1 deletions

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)