#@+leo
#@+node:0::@file plugins/mod_override_commands.py
#@+body
"""override Equal Sized Pane command"""

from leoPlugins import *
from leoGlobals import *


#@+others
#@+node:1::onCommand
#@+body
def onCommand (tag,keywords):

	if keywords.get("label")=="equalsizedpanes":
		es("over-riding Equal Sized Panes")
		return "override" # Anything other than None overrides.
#@-body
#@-node:1::onCommand
#@-others


if 1: # Register the handlers...
	registerHandler("command1", onCommand)
	
	import mod_override_commands
	es("...override Equal Sized Pane v1.1: " + plugin_date(mod_override_commands))
#@-body
#@-node:0::@file plugins/mod_override_commands.py
#@-leo
