1
0
mirror of https://github.com/fadden/6502bench.git synced 2024-09-30 23:55:09 +00:00
This commit is contained in:
Andy McFadden 2019-10-22 22:23:22 -07:00
parent 630f7f0f87
commit 4c43b4063a
2 changed files with 6 additions and 6 deletions

View File

@ -527,8 +527,8 @@ limitations under the License.
</Grid>
<!-- Launch panel. Either this or the code list panel will be visible. -->
<Grid Name="launchPanel" Grid.Column="2"
Visibility="{Binding Path=LaunchPanelVisibility}" d:IsHidden="True">
<Grid Grid.Column="2" Name="launchPanel" Visibility="{Binding Path=LaunchPanelVisibility}"
d:IsHidden="True">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
@ -628,8 +628,8 @@ limitations under the License.
<!-- A GridSplitter would be nice to make the height adjustable, but I had
trouble making everything disappear cleanly, particularly w.r.t. the splitter
working correctly after hide + re-show. (This might have been due to a more
general issue... should revisit this someday.) See
working correctly after hide + re-show. (This might have been due to issue #52...
should revisit this someday.) See
https://stackoverflow.com/q/2502178/294248 for suggestions. -->
<!--<GridSplitter Name="messageLogSplitter" Grid.Row="1" Height="4"
HorizontalAlignment="Stretch" VerticalAlignment="Center"

View File

@ -281,7 +281,7 @@ namespace SourceGen.WpfGui {
/// (Intended for use from XAML.)
/// </summary>
public Visibility LaunchPanelVisibility {
get { return mShowCodeListView ? Visibility.Hidden : Visibility.Visible; }
get { return mShowCodeListView ? Visibility.Collapsed : Visibility.Visible; }
}
/// <summary>
@ -289,7 +289,7 @@ namespace SourceGen.WpfGui {
/// (Intended for use from XAML.)
/// </summary>
public Visibility CodeListVisibility {
get { return mShowCodeListView ? Visibility.Visible : Visibility.Hidden; }
get { return mShowCodeListView ? Visibility.Visible : Visibility.Collapsed; }
}
public FontFamily CodeListFontFamily {