File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed
addon/chrome/content/minit Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -611,7 +611,11 @@ var TMP_tabDNDObserver = {
611
611
return ;
612
612
}
613
613
614
- tabBar . _finishGroupSelectedTabs ( draggedTab ) ;
614
+ if ( Tabmix . isVersion ( 1330 ) ) {
615
+ tabBar . _finishMoveTogetherSelectedTabs ( draggedTab ) ;
616
+ } else {
617
+ tabBar . _finishGroupSelectedTabs ( draggedTab ) ;
618
+ }
615
619
tabBar . _finishAnimateTabMove ( ) ;
616
620
}
617
621
Original file line number Diff line number Diff line change @@ -227,6 +227,8 @@ declare namespace MockedGeckoTypes {
227
227
_dragOverDelay : number ;
228
228
_expandSpacerBy : ( pixels : number ) => void ;
229
229
_finishAnimateTabMove : ( ) => void ;
230
+ _finishMoveTogetherSelectedTabs : ( tab : BrowserTab ) => void ;
231
+ /** @deprecated replaced with _finishMoveTogetherSelectedTabs in firefox 133 */
230
232
_finishGroupSelectedTabs : ( tab : BrowserTab ) => void ;
231
233
_getDragTargetTab ( event : DragEvent , options ?: { ignoreTabSides ?: boolean } ) : BrowserTab | null ;
232
234
// we are adding arguments to _getDropIndex see minit.js for details
You can’t perform that action at this time.
0 commit comments