mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-26 11:16:55 +00:00
fix typo in InsetCharStyle::priv_dispatch, which caused an infinite loop
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9145 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
29285691b1
commit
595dc950ec
@ -4,6 +4,8 @@
|
||||
InsetText methods rather than outputVerbatim (escapes special
|
||||
characters) [bug 1731]
|
||||
* insetcharstyle.C (outputVerbatim): remove this function.
|
||||
* insetcharstyle.C (priv_dispatch): fix typo in LFUN_MOUSE_PRESS,
|
||||
which caused an infinite loop.
|
||||
|
||||
2004-10-29 José Matos <jamatos@lyx.org>
|
||||
|
||||
|
@ -153,7 +153,7 @@ void InsetCharStyle::priv_dispatch(LCursor & cur, FuncRequest & cmd)
|
||||
if (cmd.button() == mouse_button::button3)
|
||||
has_label_ = !has_label_;
|
||||
else
|
||||
InsetText::dispatch(cur, cmd);
|
||||
InsetText::priv_dispatch(cur, cmd);
|
||||
break;
|
||||
|
||||
default:
|
||||
|
Loading…
Reference in New Issue
Block a user