← Back to team overview

touch-packages team mailing list archive

[Bug 1354812] Re: Header actions text is cut off

 

This bug was fixed in the package ubuntu-ui-toolkit -
1.1.1311+15.04.20141102-0ubuntu1

---------------
ubuntu-ui-toolkit (1.1.1311+15.04.20141102-0ubuntu1) vivid; urgency=medium

  [ Zoltán Balogh ]
  [ Christian Dywan <christian.dywan@xxxxxxxxxxxxx>
  * Explicitly use Orange in Slider and ProgressBar.
    Fixes: LP: #1372585.
  * Copy components correctly in push_to_phone.sh and make copy.sh
    more robust.
  * Make push_to_phone.sh use a temporary folder and sudo.

  [ Zsombor Egri <zsombor.egri@xxxxxxxxxxxxx>
  * ThinDivider margins rolled back to edge-to-edge. Divider colors
    adjusted with design. Fixes: LP: #1380766.

  [ Tim Peeters <tim.peeters@xxxxxxxxxxxxx>
  * Add updated header divider to use rectangles instead of images,
    and to auto-detect its color. Fixes: LP: #1372590.
  * Add internal property to hide the header separator.
    Needed in Unity8.

  [ Leonardo Arias Fonseca <leo.arias@xxxxxxxxxxxxx>
  * Fixed the infinite loop when running flickable tests.
    Fixes: LP: #1384703.
  * Added an autopilot helper for expandable list items.
    Fixes: LP: #1340227.
  * The autopilot helpers to swipe to show more now get the flickable
    containers by default. Fixes: LP: #1365674.
  * Replaced the tabs for spaces in UbuntuTestCase.
   Fixes: LP: #1324469.

ubuntu-ui-toolkit (1.1.1298+14.10.20141030~rtm-0ubuntu1) 14.09;
urgency=low

  [ CI bot ]
  * Resync trunk

  [ Timo Jyrinki ]
  * Modify test .desktop file (LP: #1382414) (LP: #1382414)

ubuntu-ui-toolkit (1.1.1298+14.10.20141016.1-0ubuntu1) 14.09;
urgency=medium

  [ Jussi Pakkanen]
  * Remove the thumbnailer image provider here, because thumbnailer
    provides it by itself Fixes LP: #1368492

  [ Lars Uebernickel ]
  * Icon: size correctly even if no or only one dimension is given

  [ Michael Sheldon]
  * Check that orientation changes are acceptable before applying new
    orientation based on active window change. Fixes LP: #1375306

  [ Zoltán Balogh ]
  * Updated test plan executer

  [ Zeller Benjamin ]
  * RenderTimer includes EGL platform files in the rendertime header,
    which can cause problems when included after QDataStream. The
    EGL headers pull the XLib files which define the Symbol Status.
  * Preparing qmlapicheck to support out of source builds for the
    cmake migration

  [ Renato Filho ]
  * Save alarms in invalid time zone. Use invalid time zone to
    floating time alarms.

  [ Tim Peeters ]
  * Make icons from theme in showcase gallery scrollable.
    Fixes: LP: #1336279.
  * Fix width of header contents. Fixes LP: #1378261.

  [ Sebastien Bacher ]
  * Don't use simple quotes around translatable strings, xgetting
    ignore those. Fixes LP: #1378774.

  [ Zsombor Egri ]
  * Alarm update regression caused by EDS changes. Also fixes Tags
    update. Requires qtorganizer5-eds updates as well!.
    Fixes LP: #1364949.
  * Forgotten Interface declaration in objects. Fixes LP: #1378298

  [ Christian Dywan ]
  * Make dialog contents scrollable. Fixes LP: #1376763
  * Make mouseMoveSlowly work with a negative distance.
    Fixes LP: #1343334
  * Read-only text entries don't blink or visibly take focus
    Fixes LP: #1370571
  * Anchor overflow button labels to the right.
    Fixes LP: #1354812 LP: #1378247
  * Don't allow inserting a line break into readOnly text areas.
    Fixes LP: #1334344

  [ Ubuntu daily release ]
  * New rebuild forced

ubuntu-ui-toolkit (1.1.1286+14.10.20141007-0ubuntu2) UNRELEASED;
urgency=medium

  [ Renato Filho ]
  * Save alarms in invalid time zone. Use invalid time zone to
    floating time alarms.

  [ Tim Peeters ]
  * Make icons from theme in showcase gallery scrollable.
    Fixes: LP: #1336279.
  * Fix width of header contents. Fixes LP: #1378261.

  [ Sebastien Bacher ]
  * Don't use simple quotes around translatable strings, xgetting
    ignore those. Fixes LP: #1378774.

  [ Zsombor Egri ]
  * Alarm update regression caused by EDS changes. Also fixes Tags
    update. Requires qtorganizer5-eds updates as well!.
    Fixes LP: #1364949.

  [ Christian Dywan ]
  * Make dialog contents scrollable. Fixes LP: #1376763
  * Make mouseMoveSlowly work with a negative distance.
    Fixes LP: #1343334

ubuntu-ui-toolkit (1.1.1279.1+14.10.20141014-0ubuntu1) 14.09;
urgency=low

  [ Ubuntu daily release ]
  * New rebuild forced

  [ Tim Peeters ]
  * Fix margins in header contents.
 -- Ubuntu daily release <ps-jenkins@xxxxxxxxxxxxxxxxxxx>   Sun, 02 Nov 2014 13:01:56 +0000

** Changed in: ubuntu-ui-toolkit (Ubuntu)
       Status: In Progress => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to ubuntu-ui-toolkit in
Ubuntu.
https://bugs.launchpad.net/bugs/1354812

Title:
  Header actions text is cut off

Status in Ubuntu UI Toolkit:
  In Progress
Status in “ubuntu-ui-toolkit” package in Ubuntu:
  Fix Released

Bug description:
  See the attached screenshot.

  - Expected: actions drop-down expands to fit the contained text. Alternatively, the documentation warns about a maximum character size. Alternatively, text is ellipsized.
  - Actual: text longer than a given size (which?) is cut off

  This will affect translations for system and core apps in particular,
  where the English text might fit, but translations that are longer
  will be cut off.

  It corresponds to header actions for the following code snippet:

              head.actions: [
                  Action {
                      text: i18n.tr("Settings")
                      iconName: "settings"
                      onTriggered: pageStack.push(settingsPage)
                  },
                  Action {
                      objectName: "hidepanelaction"
                      iconName: "edit-clear"
                      text: i18n.tr("Hide all key panels")
                      onTriggered: pgTerm.showExtraPanel(0)
                  },
                  Action {
                      objectName: "controlkeysaction"
                      text: i18n.tr("Show control keys panel")
                      onTriggered: pgTerm.showExtraPanel(1)
                  },
                  Action {
                      objectName: "functionkeysaction"
                      text: i18n.tr("Show function keys panel")
                      onTriggered: pgTerm.showExtraPanel(2)
                  },
                  Action {
                      objectName: "textkeysaction"
                      text: i18n.tr("Show arrow keys panel")
                      onTriggered: pgTerm.showExtraPanel(3)
                  }
              ]
          }

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-ui-toolkit/+bug/1354812/+subscriptions


References