* Konstantin Osipov <[EMAIL PROTECTED]> [04/05/22 02:52]:
>
> > > 3. How to change ION behaviour so that I don't have to click on
> > > window tab to make it fully visible, and instead it's enough to
> > > click at any place in the window area?
> >
> > Eh? You mean raise a window on a WFloatWS? Try Mod1+click.
>
> Right, but it won't work if I've got an IonWS in a frame inside FloatWS:
> Mod1+click won't do anything inside IonWS.
> Plus originally I wanted to make it possible without modifiers.
I tried today to modify bindings so that I don't need to hold Mod1 (Left
Alt) to switch to a window in FloatWS.
The line responsible for this binding is:
--cut: floatws.lua, floatframe_bindings
mclick(DEFAULT_MOD.."Button1", WRegion.raise),
--end cut
When I removed 'DEFAULT_MOD..' part, switching just stopped to work.
I know for sure that this is the one what I need, because the following
works fine with Right Alt:
mclick("Meta5+Button1", WRegion.raise),
Needless to say that neither of the bindings work in ionws.lua,
ionframe_bindings.
What am I doing wrong?
-kostja