Hello,
When user uses mouse BACK button, while being in locked tab, it results that Empty tab being opened.
Is there some setting or workaround to disabled that?
Definitely not a huge deal, but still.
Hello,
When user uses mouse BACK button, while being in locked tab, it results that Empty tab being opened.
Is there some setting or workaround to disabled that?
Definitely not a huge deal, but still.
Customize this button.
function OnClick(clickData)
{
var tab = clickData.func.sourcetab;
if (tab.lock == "on")
return
var cmd = clickData.func.command;
cmd.RunCommand('Go BACK USEQUALKEYS')
}
Or I'm doing it wrong way? Behavior remains same.
That's correct, look what the Other logs output.
function OnClick(clickData)
{
var tab = clickData.func.sourcetab;
DOpus.Output(tab.lock)
if (tab.lock == "on")
return
var cmd = clickData.func.command;
cmd.RunCommand('Go BACK USEQUALKEYS')
}
Yep it works, for Hotkey, but mouse buttons aren't taken into account.
The more I think about it, more it feels that I can live with current behavior
Buttons and hotkeys are customizable.