06/02/09 23:01:26 0olw8ohJ0
>>297
config.py に以下を追加でできるみたいですが
空白を含むパスだと失敗します... ショートネームに変換すればよさそうだけど...
import clmode_launcher
OldLauncherExecute = clmode_launcher.LauncherMode.OnExecute
def MyLauncherExecute(self, event):
import os.path
if os.path.isdir(event.str):
event.str = 'explorer.exe;/e,"%s"' % os.path.normpath(event.str)
OldLauncherExecute(self, event)
clmode_launcher.LauncherMode.OnExecute = MyLauncherExecute