loleaflet/dist/toolbar/toolbar.js | 32 ++++++++++++++++---------------- loleaflet/src/control/Styles.js | 2 +- 2 files changed, 17 insertions(+), 17 deletions(-)
New commits: commit b3ff83251fa665b5d5c6a1fc22cae6b286e8dc81 Author: Henry Castro <hcas...@collabora.com> Date: Sat Jul 2 14:33:50 2016 -0400 loleaflet: replace '_' for ' ', to avoid ugly effect diff --git a/loleaflet/dist/toolbar/toolbar.js b/loleaflet/dist/toolbar/toolbar.js index d5d1ce0..426888c 100644 --- a/loleaflet/dist/toolbar/toolbar.js +++ b/loleaflet/dist/toolbar/toolbar.js @@ -653,25 +653,25 @@ map.on('doclayerinit', function () { case 'spreadsheet': statusbar.insert('left', [ {type: 'break', id:'break1'}, - {type: 'html', id: 'StatusDocPos', html: '<div id="StatusDocPos" style="padding: 5px 5px;">_____</div>' }, + {type: 'html', id: 'StatusDocPos', html: '<div id="StatusDocPos" style="padding: 5px 5px;">  </div>' }, {type: 'break', id:'break2'}, - {type: 'html', id: 'RowColSelCount', html: '<div id="RowColSelCount" style="padding: 5px 5px;">_____</div>' }, + {type: 'html', id: 'RowColSelCount', html: '<div id="RowColSelCount" style="padding: 5px 5px;">  </div>' }, {type: 'break', id:'break3'}, - {type: 'html', id: 'SatusPageStyle', html: '<div id="StatusPageStyle" style="padding: 5px 5px;">_____</div>' }, + {type: 'html', id: 'SatusPageStyle', html: '<div id="StatusPageStyle" style="padding: 5px 5px;">  </div>' }, {type: 'break', id:'break4'}, - {type: 'html', id: 'InsertMode', html: '<div id="InsertMode" style="padding: 5px 5px;">_____</div>' }, + {type: 'html', id: 'InsertMode', html: '<div id="InsertMode" style="padding: 5px 5px;">  </div>' }, {type: 'break', id:'break5'}, - {type: 'html', id: 'StatusSelectionMode', html: '<div id="StatusSelectionMode" style="padding: 5px 5px;">_____</div>' }, + {type: 'html', id: 'StatusSelectionMode', html: '<div id="StatusSelectionMode" style="padding: 5px 5px;">  </div>' }, //{type: 'break', id:'break6'}, - //{type: 'html', id: 'ModifiedStatus', html: '<div id="ModfiedStatus" style="padding: 5px 5px;">_____</div>' }, + //{type: 'html', id: 'ModifiedStatus', html: '<div id="ModfiedStatus" style="padding: 5px 5px;">  </div>' }, {type: 'break', id:'break7'}, - {type: 'html', id: 'Signature', html: '<div id="Signature" style="padding: 5px 5px;">_____</div>' }, + {type: 'html', id: 'Signature', html: '<div id="Signature" style="padding: 5px 5px;">  </div>' }, {type: 'break', id:'break8'}, - {type: 'html', id: 'StateTableCell', html: '<div id="StateTableCell" style="padding: 5px 5px;">_____</div>' }, + {type: 'html', id: 'StateTableCell', html: '<div id="StateTableCell" style="padding: 5px 5px;">  </div>' }, //{type: 'break', id:'break9'}, - //{type: 'html', id: 'ZoomSlider', html: '<div id="Zoomslider" style="padding: 5px 5px;">_____</div>' }, + //{type: 'html', id: 'ZoomSlider', html: '<div id="Zoomslider" style="padding: 5px 5px;">  </div>' }, //{type: 'break', id:'break10'}, - //{type: 'html', id: 'Zoom', html: '<div id="Zoom" style="padding: 5px 5px;">_____</div>' }, + //{type: 'html', id: 'Zoom', html: '<div id="Zoom" style="padding: 5px 5px;">  </div>' }, ]) statusbar.refresh(); break; @@ -794,22 +794,22 @@ map.on('commandstatechanged', function (e) { } } else if (commandName === '.uno:StatusDocPos') { - $('#StatusDocPos').html(state ? state : '_____'); + $('#StatusDocPos').html(state ? state : '  '); } else if (commandName === '.uno:RowColSelCount') { - $('#RowColSelCount').html(state ? state : '_____'); + $('#RowColSelCount').html(state ? state : '  '); } else if (commandName === '.uno:StatusPageStyle') { - $('#StatusPageStyle').html(state ? state : '_____'); + $('#StatusPageStyle').html(state ? state : '  '); } else if (commandName === '.uno:InsertMode') { - $('#InsertMode').html(state ? L.Styles.insertMode[state] : '_____'); + $('#InsertMode').html(state ? L.Styles.insertMode[state] : '  '); } else if (commandName === '.uno:StatusSelectionMode') { - $('#StatusSelectionMode').html(state ? L.Styles.selectionMode[state] : '_____'); + $('#StatusSelectionMode').html(state ? L.Styles.selectionMode[state] : '  '); } else if (commandName === '.uno:Signature') { - $('#Signature').html(state ? L.Styles.signatureState[state] : '_____'); + $('#Signature').html(state ? L.Styles.signatureState[state] : '  '); } else if (commandName === '.uno:Position' || commandName === '.uno:StateTableCell' || diff --git a/loleaflet/src/control/Styles.js b/loleaflet/src/control/Styles.js index 206bae8..a7324b8 100644 --- a/loleaflet/src/control/Styles.js +++ b/loleaflet/src/control/Styles.js @@ -327,7 +327,7 @@ L.Styles = { 'Standard selection', 'Extending selection', 'Adding selection', - 'Selección de bloque' + 'Block selection' ], signatureState : {
_______________________________________________ Libreoffice-commits mailing list libreoffice-comm...@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits