Fix #112630: Skip grave quotation when selecting #112652

Merged
Harley Acheson merged 2 commits from PratikPB2123/blender:112630-grave-skip into blender-v4.0-release 2023-10-03 01:57:09 +02:00
1 changed files with 2 additions and 0 deletions

View File

@ -70,6 +70,8 @@ static eStrCursorDelimType cursor_delim_type_unicode(const uint uch)
case '\'':
case '\"':
case '\`':
case 0xB4: /* Acute accent. */
return STRCUR_DELIM_QUOTE;
case ' ':