mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-13 17:20:55 +00:00
EmbeddedObjects.lyx: new section about scaled and rotated material
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_5_X@20311 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
84f9bac291
commit
88ae5b3ba1
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1289,7 +1289,21 @@ void Text::dispatch(Cursor & cur, FuncRequest & cmd)
|
||||
break;
|
||||
}
|
||||
|
||||
case LFUN_INDEX_INSERT:
|
||||
case LFUN_INDEX_INSERT: {
|
||||
Inset * inset = createInset(&cur.bv(), cmd);
|
||||
if (!inset)
|
||||
break;
|
||||
insertInset(cur, inset);
|
||||
inset->edit(cur, true);
|
||||
// Show the dialog for the index entry, because it
|
||||
// needs to be modified in most instances
|
||||
if (cmd.action == LFUN_INDEX_INSERT)
|
||||
InsetCommandMailer("index",
|
||||
*reinterpret_cast<InsetCommand *>(inset)).showDialog(&cur.bv());
|
||||
cur.posRight();
|
||||
break;
|
||||
}
|
||||
|
||||
case LFUN_NOMENCL_INSERT: {
|
||||
Inset * inset = createInset(&cur.bv(), cmd);
|
||||
if (!inset)
|
||||
|
@ -32,6 +32,7 @@ What's new
|
||||
|
||||
- Embedded Objects manual:
|
||||
* new section about longtable alignment.
|
||||
* new section about scaled and rotated material
|
||||
|
||||
- Many improvements to interface translation on the Mac. In
|
||||
particular, LyX automatically uses the language of the interface for
|
||||
|
Loading…
Reference in New Issue
Block a user