From: Angus Leeming Date: Mon, 10 Mar 2003 09:46:24 +0000 (+0000) Subject: Give y'all a graphics icon on the toolbar again. X-Git-Tag: 1.6.10~17300 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=7ab854c0ed3636b1299b772fceb5650ad878ddbf;p=features.git Give y'all a graphics icon on the toolbar again. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6414 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/lib/ChangeLog b/lib/ChangeLog index 11c8a93ce2..4a26b4f042 100644 --- a/lib/ChangeLog +++ b/lib/ChangeLog @@ -1,3 +1,8 @@ +2003-03-10 Angus Leeming + + * images/graphics-insert.xpm: rename as + dialog-show-new-inset_graphics.xpm. + 2003-03-05 Angus Leeming * ui/default.ui: use 'dialog-show-new-inset "graphics"' instead diff --git a/lib/images/dialog-show-new-inset_graphics.xpm b/lib/images/dialog-show-new-inset_graphics.xpm new file mode 100644 index 0000000000..9b3d06380a --- /dev/null +++ b/lib/images/dialog-show-new-inset_graphics.xpm @@ -0,0 +1,29 @@ +/* XPM */ +static char const * fig_xpm[] = { +"20 20 4 1", +" c None", +". c #FFFFFFFFFFFF", +"X c #7B7B00000000", +"o c gray70", +" ", +" .................. ", +" .. .. ", +" .................. ", +" .. .. ", +" .................. ", +" ....XXXXXXXXXX.... ", +" ....X........X.... ", +" ....X.... ..X.... ", +" ....X... .. .X.... ", +" ....X.. oooo X.... ", +" ....X. ooooooX.... ", +" ....X oooooooX.... ", +" ....XXXXXXXXXX.... ", +" .................. ", +" .. .. ", +" .................. ", +" .. .. ", +" .................. ", +" "}; + + diff --git a/lib/images/graphics-insert.xpm b/lib/images/graphics-insert.xpm deleted file mode 100644 index 9b3d06380a..0000000000 --- a/lib/images/graphics-insert.xpm +++ /dev/null @@ -1,29 +0,0 @@ -/* XPM */ -static char const * fig_xpm[] = { -"20 20 4 1", -" c None", -". c #FFFFFFFFFFFF", -"X c #7B7B00000000", -"o c gray70", -" ", -" .................. ", -" .. .. ", -" .................. ", -" .. .. ", -" .................. ", -" ....XXXXXXXXXX.... ", -" ....X........X.... ", -" ....X.... ..X.... ", -" ....X... .. .X.... ", -" ....X.. oooo X.... ", -" ....X. ooooooX.... ", -" ....X oooooooX.... ", -" ....XXXXXXXXXX.... ", -" .................. ", -" .. .. ", -" .................. ", -" .. .. ", -" .................. ", -" "}; - - diff --git a/src/ChangeLog b/src/ChangeLog index 4815a810a8..b26cb0e3d9 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2003-03-10 Angus Leeming + + * LyXAction.C (init): fix bug in poplating array with multiple entries + with the same LFUN (spotted by JMarc). + 2003-03-10 John Levon * text.C: diff --git a/src/LyXAction.C b/src/LyXAction.C index c15a482846..1f59de6fe7 100644 --- a/src/LyXAction.C +++ b/src/LyXAction.C @@ -404,7 +404,7 @@ void LyXAction::init() { LFUN_DIALOG_SHOW_NEW_INSET, "dialog-show-new-inset", N_("Show the inset's dialog"), Noop }, - { LFUN_DIALOG_SHOW_NEW_INSET, "dialog-show-next-inset", + { LFUN_DIALOG_SHOW_NEXT_INSET, "dialog-show-next-inset", N_("Show the inset's dialog"), Noop }, { LFUN_DIALOG_UPDATE, "dialog-update", N_("Update the dialog"), Noop },