fix(GUI): display zip in supported images tooltip (#539)

The `SupportedFormatsModel` went through some changes recently, notably,
the distinction between compressed and archived formats.

This change introduced a subtle issue since we listed compressed and non
compressed supported formats on the main screen, but forgot about
archives.

Changelog-Entry: Display `*.zip` in the supported images tooltip.
Change-Type: patch
Signed-off-by: Juan Cruz Viotti <jviottidc@gmail.com>
This commit is contained in:
Juan Cruz Viotti 2016-06-30 20:09:54 +05:30 committed by GitHub
parent ea1df5cc11
commit 0eb0c99056
2 changed files with 2 additions and 1 deletions

View File

@ -10,7 +10,8 @@
<button class="btn btn-primary btn-brick" ng-click="app.openImageSelector()">Select image</button>
<p class="step-footer">
{{ ::app.formats.getNonCompressedExtensions().join(', ') }}, or
{{ ::app.formats.getNonCompressedExtensions().join(', ') }},
{{ ::app.formats.getArchiveExtensions().join(', ') }}, or
<span class="step-footer-underline"
uib-tooltip="{{ app.formats.getCompressedExtensions().join(', ') }}">compressed images</span>
</p>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 126 KiB

After

Width:  |  Height:  |  Size: 126 KiB