Skip to content

Commit dbf91b4

Browse files
committed
Improved and broke stuff
Improved Syncing but VLC is now broken
1 parent 74eb27e commit dbf91b4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+94
-56
lines changed
-12.5 KB
Binary file not shown.

SyncPlayWPF/External/WPF-Masonry/Masonry/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,5 +57,5 @@ You should have received a copy of the GNU General Public License
5757
// by using the '*' as shown below:
5858
// [assembly: AssemblyVersion("1.0.*")]
5959

60-
[assembly: AssemblyVersion("2021.260.0.0")]
61-
[assembly: AssemblyFileVersion("2021.260.0.0")]
60+
[assembly: AssemblyVersion("2021.267.0.0")]
61+
[assembly: AssemblyFileVersion("2021.267.0.0")]

SyncPlayWPF/External/WpfPageTransitions/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,5 +51,5 @@
5151
// You can specify all the values or you can default the Build and Revision Numbers
5252
// by using the '*' as shown below:
5353
// [assembly: AssemblyVersion("1.0.*")]
54-
[assembly: AssemblyVersion("2021.260.0.0")]
55-
[assembly: AssemblyFileVersion("2021.260.0.0")]
54+
[assembly: AssemblyVersion("2021.267.0.0")]
55+
[assembly: AssemblyFileVersion("2021.267.0.0")]
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

SyncPlayWPF/SyncPlayWPF/CustomControls/ImageButton.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ static ImageButton() {
6969
// Text Colors
7070
public static readonly DependencyProperty TextForegroundBrushProperty = DependencyProperty.Register("TextForegroundBrush", typeof(Brush), typeof(ImageButton), new PropertyMetadata(default(Brush)));
7171

72+
// Boolean stuff
7273
public static readonly DependencyProperty IsCompactProperty = DependencyProperty.Register("IsCompact", typeof(bool), typeof(ImageButton), new PropertyMetadata(true));
7374

7475
public bool IsCompact {
@@ -150,16 +151,20 @@ public void FadeInLegend(int duration) {
150151
}
151152

152153
public void EnableCompactMode() {
154+
//var container_grid = GetTemplateChild("ContainerGrid") as Grid;
153155
var content_label = GetTemplateChild("ButtonLabel") as TextBlock;
154156
content_label.MaxWidth = 0;
155157
content_label.Margin = new Thickness(0, 0, 0, 0);
158+
//container_grid.Margin = new Thickness(12, 12, 12, 12);
156159
_isCompact = true;
157160
}
158161

159162
public void DisableCompactMode() {
160163
var content_label = GetTemplateChild("ButtonLabel") as TextBlock;
164+
//var container_grid = GetTemplateChild("ContainerGrid") as Grid;
161165
content_label.MaxWidth = double.PositiveInfinity;
162166
content_label.Margin = new Thickness(15, 0, 0, 0);
167+
//container_grid.Margin = new Thickness(20, 12, 20, 12);
163168
_isCompact = true;
164169
}
165170

0 commit comments

Comments
 (0)