fixing a bug where dblclick on titlebar of collapsepanel would expand or collapse the wrong panel
This commit is contained in:
parent
c14a5eab5f
commit
ec09e331f7
1 changed files with 1 additions and 1 deletions
|
@ -8830,7 +8830,7 @@ requires
|
|||
.addClass('OxCollapsePanel'),
|
||||
title = self.options.collapsed ?
|
||||
[{id: 'expand', title: 'expand'}, {id: 'collapse', title: 'collapse'}] :
|
||||
[{id: 'collapse', title: 'collapse'}, {id: 'expand', title: 'expand'}];
|
||||
[{id: 'collapse', title: 'collapse'}, {id: 'expand', title: 'expand'}],
|
||||
$titlebar = new Ox.Bar({
|
||||
orientation: 'horizontal',
|
||||
size: self.options.size,
|
||||
|
|
Loading…
Reference in a new issue