Revise naming to reflect behavior
This commit is contained in:
parent
e1700dadcd
commit
c00f7c2139
3 changed files with 8 additions and 8 deletions
|
|
@ -396,7 +396,7 @@
|
|||
<Compile Include="Utilities\WebUtilities\RequestManager.cs" />
|
||||
<Compile Include="SettingsManagement\ApplicationSettings.cs" />
|
||||
<Compile Include="SettingsManagement\UserSettings.cs" />
|
||||
<Compile Include="SlicerConfiguration\SettingsControlBar.cs" />
|
||||
<Compile Include="SlicerConfiguration\PresetsToolbar.cs" />
|
||||
<Compile Include="SlicerConfiguration\SliceSettingsWidget.cs" />
|
||||
<Compile Include="SlicerConfiguration\SliceSettingsOrganizer.cs" />
|
||||
<Compile Include="SlicerConfiguration\SlicingQueue.cs" />
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
Copyright (c) 2014, Kevin Pope
|
||||
Copyright (c) 2017, Kevin Pope, John Lewin
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
|
|
@ -27,19 +27,19 @@ of the authors and should not be interpreted as representing official policies,
|
|||
either expressed or implied, of the FreeBSD Project.
|
||||
*/
|
||||
|
||||
using System.Collections.Generic;
|
||||
using MatterHackers.Agg;
|
||||
using MatterHackers.Agg.UI;
|
||||
using MatterHackers.Localizations;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using MatterHackers.MatterControl.PrinterCommunication;
|
||||
|
||||
namespace MatterHackers.MatterControl.SlicerConfiguration
|
||||
{
|
||||
public class SettingsControlBar : FlowLayoutWidget
|
||||
public class PresetsToolbar : FlowLayoutWidget
|
||||
{
|
||||
PrinterConnection printerConnection;
|
||||
public SettingsControlBar(PrinterConnection printerConnection)
|
||||
|
||||
public PresetsToolbar(PrinterConnection printerConnection)
|
||||
{
|
||||
this.printerConnection = printerConnection;
|
||||
this.HAnchor = HAnchor.Stretch;
|
||||
|
|
@ -70,7 +70,7 @@ namespace MatterHackers.MatterControl.SlicerConfiguration
|
|||
public class SliceSettingsWidget : GuiWidget
|
||||
{
|
||||
private TabControl topCategoryTabs;
|
||||
internal SettingsControlBar settingsControlBar;
|
||||
internal PresetsToolbar settingsControlBar;
|
||||
private FlowLayoutWidget pageTopToBottomLayout;
|
||||
|
||||
private SettingsContext settingsContext;
|
||||
|
|
@ -96,7 +96,7 @@ namespace MatterHackers.MatterControl.SlicerConfiguration
|
|||
pageTopToBottomLayout.AnchorAll();
|
||||
this.AddChild(pageTopToBottomLayout);
|
||||
|
||||
settingsControlBar = new SettingsControlBar(printerConnection)
|
||||
settingsControlBar = new PresetsToolbar(printerConnection)
|
||||
{
|
||||
HAnchor = HAnchor.Stretch,
|
||||
Padding = new BorderDouble(8, 12, 8, 8)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue