Browse Source

Subsribe to PixiEditor's OnlyFans please

CPKreuz 4 years ago
parent
commit
40d49d814d

+ 1 - 1
PixiEditor/ViewModels/SubViewModels/Main/FileViewModel.cs

@@ -199,7 +199,7 @@ namespace PixiEditor.ViewModels.SubViewModels.Main
             }
             catch (OldFileFormatException)
             {
-                NoticeDialog.Show("This .pixi file uses the old format, which is no longer supported and can't be opened.", "Old file format");
+                NoticeDialog.Show("This .pixi file uses the old format,\n which is no longer supported and can't be opened.", "Old file format");
             }
         }
 

+ 1 - 1
PixiEditor/Views/Dialogs/HelloTherePopup.xaml

@@ -168,7 +168,7 @@
                         </Button.Style>
                     </Button>
                     <Button Command="{Binding OpenHyperlinkCommand}" CommandParameter="https://opencollective.com/pixieditor"
-                            Content="Sponsor">
+                            Content="Donate" ToolTip="And subscribe to PixiEditor's OnlyFans please">
                         <Button.Style>
                             <Style TargetType="Button" BasedOn="{StaticResource SocialMediaButton}">
                                 <Style.Triggers>

+ 3 - 2
PixiEditor/Views/Dialogs/NoticePopup.xaml

@@ -22,8 +22,9 @@
         <i:Interaction.Behaviors>
             <behaviours:ClearFocusOnClickBehavior/>
         </i:Interaction.Behaviors>
-        <TextBlock Grid.Row="1" Text="{Binding Body, ElementName=popup}" HorizontalAlignment="Center"
-                   VerticalAlignment="Center" FontSize="18" Foreground="White" />
+        <TextBlock Grid.Row="1" Text="{Binding Body, ElementName=popup}" TextAlignment="Center"
+                   VerticalAlignment="Center" FontSize="18" Foreground="White"
+                       TextWrapping="WrapWithOverflow" TextTrimming="WordEllipsis" />
         <DockPanel Grid.Row="0" Background="{StaticResource MainColor}">
             <TextBlock Text="{Binding Title, ElementName=popup}" 
                        FontSize="18" Foreground="White"