Skip to content

Commit

Permalink
Fixed missing inital same step experiments sorting. Set initial value…
Browse files Browse the repository at this point in the history
… of IsServerEnabled to true.
  • Loading branch information
abrechts committed Feb 21, 2024
1 parent 1415cbd commit 91dbc91
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 16 deletions.
2 changes: 1 addition & 1 deletion CustomControls/App.config
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
<value>g</value>
</setting>
<setting name="IsServerEnabled" serializeAs="String">
<value>True</value>
<value>False</value>
</setting>
<setting name="RestoreFromServer" serializeAs="String">
<value>False</value>
Expand Down
4 changes: 2 additions & 2 deletions CustomControls/My Project/Settings.Designer.vb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion CustomControls/My Project/Settings.settings
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
<Value Profile="(Default)">g</Value>
</Setting>
<Setting Name="IsServerEnabled" Type="System.Boolean" Scope="User">
<Value Profile="(Default)">True</Value>
<Value Profile="(Default)">False</Value>
</Setting>
<Setting Name="RestoreFromServer" Type="System.Boolean" Scope="User">
<Value Profile="(Default)">False</Value>
Expand Down
2 changes: 1 addition & 1 deletion CustomControls/StepSummary.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
</StackPanel>

<local:ComboPlus x:Name="cboSortType" SelectedIndex="0" HorizontalAlignment="Center" Margin="-10,1,0,4" Padding="6,1,6,2"
CboBackground="white" VerticalAlignment="Center" DockPanel.Dock="top">
CboBackground="white" VerticalAlignment="Center" DockPanel.Dock="top">
<ComboBoxItem Content="by yield"/>
<ComboBoxItem Content="by scale"/>
</local:ComboPlus>
Expand Down
2 changes: 1 addition & 1 deletion CustomControls/StepSummary.xaml.vb
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Public Class StepSummary

If Me.DataContext IsNot Nothing Then
cvsStepExperiments.Source = CType(Me.DataContext, tblUsers).tblExperiments
cvsStepExperiments.View.Refresh()
cboSortType_Changed()
End If

End Sub
Expand Down
1 change: 0 additions & 1 deletion CustomControls/dlgServerConnection.xaml.vb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ Imports System.Windows
Imports System.Windows.Input
Imports ElnBase
Imports ElnCoreModel
Imports Microsoft.EntityFrameworkCore


Public Class dlgServerConnection
Expand Down
9 changes: 0 additions & 9 deletions PhoenixELN.sln
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
README.md = README.md
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "GitHub_Assets", "GitHub_Assets", "{610FECCA-813E-44EF-9C4D-13F1382387E2}"
ProjectSection(SolutionItems) = preProject
GitHub_Assets\Materials-Database.png = GitHub_Assets\Materials-Database.png
GitHub_Assets\Protocol_Overall_1.png = GitHub_Assets\Protocol_Overall_1.png
GitHub_Assets\Reaction-Editor.png = GitHub_Assets\Reaction-Editor.png
GitHub_Assets\Same_Step_List.png = GitHub_Assets\Same_Step_List.png
GitHub_Assets\Server-Login.png = GitHub_Assets\Server-Login.png
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down

0 comments on commit 91dbc91

Please sign in to comment.