forked from 0x2620/pandora
fix #2298 (Previous/Next Document buttons lack tooltips)
This commit is contained in:
parent
e5151a18a4
commit
cebd7c14ea
2 changed files with 4 additions and 4 deletions
|
@ -113,8 +113,8 @@ pandora.ui.documentDialog = function(options) {
|
||||||
|
|
||||||
$selectButton = Ox.ButtonGroup({
|
$selectButton = Ox.ButtonGroup({
|
||||||
buttons: [
|
buttons: [
|
||||||
{id: 'previous', title: 'left'},
|
{id: 'previous', title: 'left', tooltip: Ox._('Previous')},
|
||||||
{id: 'next', title: 'right'}
|
{id: 'next', title: 'right', tooltip: Ox._('Next')}
|
||||||
],
|
],
|
||||||
type: 'image'
|
type: 'image'
|
||||||
})
|
})
|
||||||
|
|
|
@ -300,8 +300,8 @@ pandora.ui.documentsPanel = function(options) {
|
||||||
|
|
||||||
$selectButton = Ox.ButtonGroup({
|
$selectButton = Ox.ButtonGroup({
|
||||||
buttons: [
|
buttons: [
|
||||||
{id: 'previous', title: 'left'},
|
{id: 'previous', title: 'left', tooltip: Ox._('Previous')},
|
||||||
{id: 'next', title: 'right'}
|
{id: 'next', title: 'right', tooltip: Ox._('Next')}
|
||||||
],
|
],
|
||||||
type: 'image'
|
type: 'image'
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue