Recipe Book

10 - Bindings error in FrameXML.log

Taken from my <game>\Logs\FrameXML.log

6/1 13:09:25.314 Loading add-on RecipeBook
6/1 13:09:25.314 Binding header RECIPEBOOK is defined more than once in Interface\AddOns\RecipeBook\Bindings.xml
6/1 13:09:25.314 Binding header RECIPEBOOK is defined more than once in Interface\AddOns\RecipeBook\Bindings.xml

Problem is that you should use header="something" just in the first defined binding but not in any of the following.

IMHO the code of bindings.xml should be something like:

<Bindings>
	<Binding name="RECIPEBOOK_SKILL" header="RECIPEBOOK">
		if ( keystate == "down" ) then
			RBUI:ShowBrowseFrame();
		end
	</Binding>
	
	<Binding name="RECIPEBOOK_CONFIG">
		if ( keystate == "down" ) then
			RBUI:ShowOptionsFrame();
		end
	</Binding>
		<Binding name="RECIPEBOOK_SEARCH">
		if ( keystate == "down" ) then
			RBUI:ShowSearchFrame();
		end
	</Binding>
</Bindings>
User When Change
Garkin Mon, 01 Jun 2009 11:51:52 Create

You must login to post a comment. Don't have an account? Register to get one!

Facts

Last updated on
01 Jun 2009
Reported on
01 Jun 2009
Status
New - Issue has not had initial review yet.
Type
Defect - A shortcoming, fault, or imperfection
Priority
Medium - Normal priority.

Reported by

Possible assignees