Skip to content

Commit

Permalink
feat(sqlite): implement quest logging
Browse files Browse the repository at this point in the history
  • Loading branch information
DorielRivalet committed Dec 25, 2022

Partially verified

This commit is signed with the committer’s verified signature.
Tofel’s contribution has been verified via SSH key.
We cannot verify signatures from co-authors, and some of the co-authors attributed to this commit require their commits to be signed.
1 parent 11f9a5a commit 12a6c02
Showing 4 changed files with 245 additions and 171 deletions.
24 changes: 21 additions & 3 deletions MHFZ_Overlay/ConfigWindow.xaml
Original file line number Diff line number Diff line change
@@ -1814,10 +1814,28 @@
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="1*"/>
<RowDefinition Height="1*"/>
<RowDefinition Height="1*"/>
<RowDefinition Height="1*"/>
</Grid.RowDefinitions>
<DockPanel>

</DockPanel>
<Grid Grid.Row="0" Background="Transparent" Style="{StaticResource ConfigSingleGrid}">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="1*"/>
<ColumnDefinition Width="1*"/>
<ColumnDefinition Width="1*"/>
<ColumnDefinition Width="1*"/>
<ColumnDefinition Width="1*"/>
<ColumnDefinition Width="1*"/>
<ColumnDefinition Width="1*"/>
<ColumnDefinition Width="1*"/>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="1*"/>
</Grid.RowDefinitions>
<TextBlock Margin="5,5,5,5" ToolTip="Enable logging of quests when completing them and inserts the information into a local database" Style="{StaticResource ConfigTextBox}" Grid.Row="0" Grid.Column="0" Text="Enable Quest Logging"/>
<ToggleButton Grid.Row="0" Grid.Column="1" Style="{StaticResource MaterialDesignSwitchToggleButton}" IsChecked="{Binding Source={StaticResource Settings}, Path=EnableQuestLogging}"/>
</Grid>
<TextBlock Margin="5,5,5,5" ToolTip="Enable logging of quests when completing them and inserts the information into a local database" Style="{StaticResource ConfigTextBox}" Grid.Row="1" Grid.Column="0" Text="Enable Quest Logging"/>
</Grid>
</ScrollViewer>
</DockPanel>
Loading

0 comments on commit 12a6c02

Please sign in to comment.