Revert "Don't modify position of thumbnail inserted by Informational Tab"
This reverts commit 2a750342bbe4343c846e6cc13a9b9610cd835355.
This commit is contained in:
parent
a9351d71e0
commit
9c3221b722
@ -2,7 +2,6 @@
|
|||||||
|
|
||||||
- master/HEAD
|
- master/HEAD
|
||||||
* Dropped non-URI text (maybe including whitespaces) onto the tab bar is opened with a search result tab. The behavior is same to Firefox's default.
|
* Dropped non-URI text (maybe including whitespaces) onto the tab bar is opened with a search result tab. The behavior is same to Firefox's default.
|
||||||
* Show Informational Tab's thumbnail after the number of collapsed tabs, when it is configured to be placed before a closebox.
|
|
||||||
* Better layout for fake tree in multiple columns (at tooltip of tabs and dummy group tabs).
|
* Better layout for fake tree in multiple columns (at tooltip of tabs and dummy group tabs).
|
||||||
* Behaviors around multiple home pages are improved.
|
* Behaviors around multiple home pages are improved.
|
||||||
* On the startup, they are opened as flat tabs and not grouped.
|
* On the startup, they are opened as flat tabs and not grouped.
|
||||||
|
@ -2,7 +2,6 @@
|
|||||||
|
|
||||||
- master/HEAD
|
- master/HEAD
|
||||||
* URIでない文字列(空白文字を含む)をタブバーにドロップした場合に、Firefoxの既定の挙動通りに検索結果のタブを開くようにした
|
* URIでない文字列(空白文字を含む)をタブバーにドロップした場合に、Firefoxの既定の挙動通りに検索結果のタブを開くようにした
|
||||||
* 情報化タブでタブのクローズボックスの手前に表示するようにしたサムネイルを「折り畳まれたタブの数」のカウンターの後に表示するようにした
|
|
||||||
* タブのツールチップとダミーのグループ化用のタブにおいて、ツリーのマルチカラム表示のレイアウトをより安定した結果が得られるように改善した
|
* タブのツールチップとダミーのグループ化用のタブにおいて、ツリーのマルチカラム表示のレイアウトをより安定した結果が得られるように改善した
|
||||||
* 複数のタブをホームページに設定しているときの挙動を改善
|
* 複数のタブをホームページに設定しているときの挙動を改善
|
||||||
* 起動時には、それらをツリーでない個別のタブとして開くようにした
|
* 起動時には、それらをツリーでない個別のタブとして開くようにした
|
||||||
|
@ -1308,6 +1308,8 @@ TreeStyleTabBrowser.prototype = inherit(TreeStyleTabWindow.prototype, {
|
|||||||
for (let i = 0, maxi = nodes.length; i < maxi; i++)
|
for (let i = 0, maxi = nodes.length; i < maxi; i++)
|
||||||
{
|
{
|
||||||
let node = nodes[i];
|
let node = nodes[i];
|
||||||
|
if (node.getAttribute('class') == 'informationaltab-thumbnail-container')
|
||||||
|
continue;
|
||||||
node.setAttribute('ordinal', (count - i + 1) * 100);
|
node.setAttribute('ordinal', (count - i + 1) * 100);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1345,7 +1347,6 @@ TreeStyleTabBrowser.prototype = inherit(TreeStyleTabWindow.prototype, {
|
|||||||
delete this.timers[key];
|
delete this.timers[key];
|
||||||
}).bind(this), 100);
|
}).bind(this), 100);
|
||||||
}
|
}
|
||||||
log('rearranged tab contents: ', nodes);
|
|
||||||
},
|
},
|
||||||
|
|
||||||
updateInvertedTabContentsOrder : function TSTBrowser_updateInvertedTabContentsOrder(aTarget)
|
updateInvertedTabContentsOrder : function TSTBrowser_updateInvertedTabContentsOrder(aTarget)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user