diff --git a/history.en.md b/history.en.md index 8043c82c..ce96d06d 100644 --- a/history.en.md +++ b/history.en.md @@ -2,7 +2,6 @@ - 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. - * 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). * Behaviors around multiple home pages are improved. * On the startup, they are opened as flat tabs and not grouped. diff --git a/history.ja.md b/history.ja.md index b30e9571..f33e57e7 100644 --- a/history.ja.md +++ b/history.ja.md @@ -2,7 +2,6 @@ - master/HEAD * URIでない文字列(空白文字を含む)をタブバーにドロップした場合に、Firefoxの既定の挙動通りに検索結果のタブを開くようにした - * 情報化タブでタブのクローズボックスの手前に表示するようにしたサムネイルを「折り畳まれたタブの数」のカウンターの後に表示するようにした * タブのツールチップとダミーのグループ化用のタブにおいて、ツリーのマルチカラム表示のレイアウトをより安定した結果が得られるように改善した * 複数のタブをホームページに設定しているときの挙動を改善 * 起動時には、それらをツリーでない個別のタブとして開くようにした diff --git a/modules/browser.js b/modules/browser.js index 37e73d9d..2bd8f4a6 100644 --- a/modules/browser.js +++ b/modules/browser.js @@ -1308,6 +1308,8 @@ TreeStyleTabBrowser.prototype = inherit(TreeStyleTabWindow.prototype, { for (let i = 0, maxi = nodes.length; i < maxi; i++) { let node = nodes[i]; + if (node.getAttribute('class') == 'informationaltab-thumbnail-container') + continue; node.setAttribute('ordinal', (count - i + 1) * 100); } @@ -1345,7 +1347,6 @@ TreeStyleTabBrowser.prototype = inherit(TreeStyleTabWindow.prototype, { delete this.timers[key]; }).bind(this), 100); } - log('rearranged tab contents: ', nodes); }, updateInvertedTabContentsOrder : function TSTBrowser_updateInvertedTabContentsOrder(aTarget)