Skip to content

Commit

Permalink
fix: correctly handle ciphers login ellipsis
Browse files Browse the repository at this point in the history
On `grouping` view ciphers subtitles are truncated if too long

A supernumerary column declaration was breaking the grid and ciphers
subtitles were truncated if longer than the cipher's name, even if
there was enough place to display them completly

Now ciphers subtitles take all available space and are truncated only
if larger than the screen

This reverts part of d3d7e0b
  • Loading branch information
Ldoppea committed Nov 25, 2021
1 parent 4ba49e1 commit ca3a088
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/App/Controls/CipherViewCell/CipherViewCell.xaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<?xml version="1.0" encoding="UTF-8"?>
<controls:ExtendedGrid xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="Bit.App.Controls.CipherViewCell"
Expand Down Expand Up @@ -56,7 +56,6 @@
</Grid.RowDefinitions>

<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto" />
<ColumnDefinition Width="Auto" />
<ColumnDefinition Width="Auto" />
<ColumnDefinition Width="*" />
Expand Down

0 comments on commit ca3a088

Please sign in to comment.