Only renaming some things.

Don't watch this commit, it's boring.
This commit is contained in:
Fabian Müller 2012-03-20 20:29:10 +00:00
parent 32d70d0301
commit 33ec8aeb2f
3 changed files with 7 additions and 7 deletions

View file

@ -427,7 +427,7 @@
title= _ "Group"
image=lite_small
font_size=9
items=editor-terrain-groups
items=editor-palette-groups
ref=bottom-right-panel
rect="=+16,=+2,+55,+18"
xanchor=right
@ -583,7 +583,7 @@
[menu]
id=upscroll-button-editor
image=uparrow-button
items=editor-terrain-upscroll
items=editor-palette-upscroll
ref=terrain_image
rect="+6,=+0,+24,+24"
xanchor=right
@ -593,7 +593,7 @@
[menu]
id=downscroll-button-editor
image=downarrow-button
items=editor-terrain-downscroll
items=editor-palette-downscroll
ref=upscroll-button-editor
rect="+6,=+0,+24,+24"
xanchor=right

View file

@ -132,9 +132,9 @@ const struct {
{ hotkey::HOTKEY_EDITOR_MAP_INFO, "editor-map-info", N_("Map Information"), false, hotkey::SCOPE_EDITOR },
{ hotkey::HOTKEY_EDITOR_TERRAIN_PALETTE_SWAP, "editor-terrain-palette-swap",
N_("Swap Foreground/Background Terrains"), false, hotkey::SCOPE_EDITOR },
{ hotkey::HOTKEY_EDITOR_TERRAIN_GROUPS, "editor-terrain-groups", N_("Change Terrain Group"), false, hotkey::SCOPE_EDITOR },
{ hotkey::HOTKEY_EDITOR_TERRAIN_LEFTSCROLL, "editor-terrain-upscroll", N_("Scroll Terrains Left"), false, hotkey::SCOPE_EDITOR },
{ hotkey::HOTKEY_EDITOR_TERRAIN_RIGHTSCROLL, "editor-terrain-downscroll", N_("Scroll Terrains Right"), false, hotkey::SCOPE_EDITOR },
{ hotkey::HOTKEY_EDITOR_PALETTE_GROUPS, "editor-palette-groups", N_("Change Palette Group"), false, hotkey::SCOPE_EDITOR },
{ hotkey::HOTKEY_EDITOR_PALETTE_UPSCROLL, "editor-palette-upscroll", N_("Scroll Palette Left"), false, hotkey::SCOPE_EDITOR },
{ hotkey::HOTKEY_EDITOR_PALETTE_DOWNSCROLL, "editor-palette-downscroll", N_("Scroll Palette Right"), false, hotkey::SCOPE_EDITOR },
{ hotkey::HOTKEY_EDITOR_TOOL_NEXT, "editor-tool-next", N_("Next Tool"), false, hotkey::SCOPE_EDITOR },
{ hotkey::HOTKEY_EDITOR_TOOL_PAINT, "editor-tool-paint", N_("Paint Tool"), false, hotkey::SCOPE_EDITOR },
{ hotkey::HOTKEY_EDITOR_TOOL_FILL, "editor-tool-fill", N_("Fill Tool"), false, hotkey::SCOPE_EDITOR },

View file

@ -79,7 +79,7 @@ enum HOTKEY_COMMAND {
HOTKEY_EDITOR_MAP_SAVE_AS, HOTKEY_EDITOR_MAP_SAVE_ALL,
HOTKEY_EDITOR_MAP_REVERT, HOTKEY_EDITOR_MAP_INFO,
HOTKEY_EDITOR_TERRAIN_PALETTE_SWAP,
HOTKEY_EDITOR_TERRAIN_GROUPS, HOTKEY_EDITOR_TERRAIN_LEFTSCROLL, HOTKEY_EDITOR_TERRAIN_RIGHTSCROLL,
HOTKEY_EDITOR_PALETTE_GROUPS, HOTKEY_EDITOR_PALETTE_UPSCROLL, HOTKEY_EDITOR_PALETTE_DOWNSCROLL,
HOTKEY_EDITOR_TOOL_NEXT,
HOTKEY_EDITOR_TOOL_PAINT, HOTKEY_EDITOR_TOOL_FILL,
HOTKEY_EDITOR_TOOL_SELECT, HOTKEY_EDITOR_TOOL_STARTING_POSITION, HOTKEY_EDITOR_TOOL_LABEL,