
Quote
siria
1) that setting toggles the pref named
dom.disable_window_move_resize
Am no expert, but figured this out by going to "about:config", typing "window", then toggling that checkmark in the prefs tab and watching if anything flips simultaneously in the prefs list![]()
Perhaps do an explorer search in your macros folder, if one of the kmm files contains that text? Well possible one of them flips that setting, with 1-6-0 macros - WHOA!!!![]()
2) That's some settings window? Guess that's this known XUL bug in the 1.6beta version yet, was discussed in the beta threads...
Quote
luk3Z
1. ok I changed dom.disable_window_move_resize but after restart KM is checked (true) again
I test it with macros later and if I find it I'll write what was that.
2. Settings window appear big for a while (less than ~0.5 sec) and after that become normal window.
Thanks for fast answer!
Edit:
I found it - it is taballwindows.7z
Problem 1 solved (TabAllWindows.kmm):
TabAllWindowsSetPrefs{
setpref(BOOL,"dom.disable_window_move_resize",true);
Quote
jsnj
Quote
luk3Z
1. ok I changed dom.disable_window_move_resize but after restart KM is checked (true) again
I test it with macros later and if I find it I'll write what was that.
2. Settings window appear big for a while (less than ~0.5 sec) and after that become normal window.
Thanks for fast answer!
Edit:
I found it - it is taballwindows.7z
Problem 1 solved (TabAllWindows.kmm):
TabAllWindowsSetPrefs{
setpref(BOOL,"dom.disable_window_move_resize",true);
In Preferences, under Window Diversion, when Open Links meant to open in a new window is set to: In a new tab, if Disallow scripts to move or resize windows is unchecked you run the risk of a script resizing the entire browser window and all the tabs within it which can be very annoying, particularly when the size is of a small popup picture. So that's why it's set that way in TabAllWindows. I'm curious why you'd need that allowance.
TabAllWindowsHome{
$Home=HomeTab;
(...)
ToggleHomeInNewTab{
(...)
}
Quote
luk3Z
Edit:
I don't know why but it also cause open new tab when you click on home button (it should stay in current tab - I mean old behaviour). It is unchecked in "Tab All Win Opt" but it doesn't work).
Probably something wrong is in the:
TabAllWindowsHome{ $Home=HomeTab; (...)
or
ToggleHomeInNewTab{ (...) }
TabAllWindowsHome{
getpref(BOOL,$macroPrefBranch."TabAllWindows.Home") ? $Home=HomeTab:$Home=_Home;
...