1.7.1 - Firefox quick fix for bug 149, 150, 151
This commit is contained in:
parent
48dccfecd6
commit
ef57faa773
@ -48,5 +48,5 @@
|
||||
"page": "options.html",
|
||||
"open_in_tab": true
|
||||
},
|
||||
"version": "1.7.0"
|
||||
"version": "1.7.1"
|
||||
}
|
@ -259,6 +259,12 @@ function QuantumLoadTabs(retry) {
|
||||
} else {
|
||||
QuantumAppendWinTTId(winId);
|
||||
}
|
||||
|
||||
if (b.windows[winId].activeTabId == undefined) { // legacy
|
||||
b.windows[winId].activeTabId = [0,0]; // legacy
|
||||
} // legacy
|
||||
|
||||
|
||||
for (let tIndex = 0; tIndex < tabsCount; tIndex++) {
|
||||
let tab = w[winIndex].tabs[tIndex];
|
||||
let tabIndex = tIndex;
|
||||
|
@ -488,6 +488,7 @@ function OnMessageTabCreated(tabId) {
|
||||
} else {
|
||||
|
||||
if (opt.append_orphan_tab == "as_child" && opt.orphaned_tabs_to_ungrouped == false) {
|
||||
|
||||
// let atb = NewTab.active ? 0 : 1;
|
||||
NewTab.openerTabId = b.windows[NewTab.windowId].activeTabId[NewTab.active ? 0 : 1];
|
||||
}
|
||||
@ -623,6 +624,7 @@ function OnMessageTabCreated(tabId) {
|
||||
|
||||
if (opt.append_orphan_tab == "after_active") {
|
||||
|
||||
if (b.windows[NewTab.windowId] && b.windows[NewTab.windowId].activeTabId) {
|
||||
let activeTabId = b.windows[NewTab.windowId].activeTabId[1] != NewTab.id ? b.windows[NewTab.windowId].activeTabId[1] : b.windows[NewTab.windowId].activeTabId[0];
|
||||
|
||||
// console.log(b.tabs[activeTabId].index);
|
||||
@ -652,6 +654,14 @@ function OnMessageTabCreated(tabId) {
|
||||
}
|
||||
ParentId = b.windows[NewTab.windowId].active_group;
|
||||
}
|
||||
} else {
|
||||
b.tabs[NewTab.id].parent = "tab_list";
|
||||
if (browserId == "F"){
|
||||
b.tabs[NewTab.id].parent_ttid = "";
|
||||
}
|
||||
b.tabs[NewTab.id].index = NewTab.index;
|
||||
ParentId = "tab_list";
|
||||
}
|
||||
// console.log(b.tabs[NewTab.id].index);
|
||||
}
|
||||
|
||||
|
@ -48,5 +48,5 @@
|
||||
"page": "options.html",
|
||||
"open_in_tab": true
|
||||
},
|
||||
"version": "1.7.0"
|
||||
"version": "1.7.1"
|
||||
}
|
@ -29,6 +29,7 @@ function SetEvents() {
|
||||
document.oncontextmenu = function(event){
|
||||
if (!event.ctrlKey && event.target.classList.contains("text_input") == false) {
|
||||
event.preventDefault();
|
||||
return false;
|
||||
}
|
||||
}
|
||||
document.body.onresize = function(event) {
|
||||
|
@ -32,7 +32,7 @@
|
||||
<link type="text/css" rel="stylesheet" media="all" href="theme/theme.css" id="theme" />
|
||||
<link type="text/css" rel="stylesheet" media="all" href="theme/theme_manager.css" id="manager" />
|
||||
</head>
|
||||
<body id="body" class="sidebar_body" oncontextmenu="return false;">
|
||||
<body id="body" class="sidebar_body">
|
||||
|
||||
<div id="DragImage" style="display: none; width:0px; height:0px;"></div>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user