Commit c46d0afb authored by Ilya.Kirillov's avatar Ilya.Kirillov Committed by Alexander.Trofimov

Исправлен баг с получением выделенного текста(баг 19461).

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@49380 954022d7-b5bf-4e40-9824-e11837661b57
parent 1c519dcb
...@@ -3267,7 +3267,7 @@ CDocumentContent.prototype = ...@@ -3267,7 +3267,7 @@ CDocumentContent.prototype =
// Либо у нас нет выделения, либо выделение внутри одного элемента // Либо у нас нет выделения, либо выделение внутри одного элемента
if ( docpostype_Content == this.CurPos.Type && ( ( true === this.Selection.Use && selectionflag_Common === this.Selection.Flag ) || false === this.Selection.Use ) ) if ( docpostype_Content == this.CurPos.Type && ( ( true === this.Selection.Use && selectionflag_Common === this.Selection.Flag ) || false === this.Selection.Use ) )
{ {
if ( true === bClearText && this.Selection.StartPos === this.Selection.EndPos ) if ( true === bClearText && (this.Selection.StartPos === this.Selection.EndPos || false === this.Selection.Use ) )
{ {
var Pos = ( true == this.Selection.Use ? this.Selection.StartPos : this.CurPos.ContentPos ); var Pos = ( true == this.Selection.Use ? this.Selection.StartPos : this.CurPos.ContentPos );
return this.Content[Pos].Get_SelectedText(true); return this.Content[Pos].Get_SelectedText(true);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment