Skip to content

Commit 8f9f752

Browse files
committed
Done with v2.0
1 parent 9d7471b commit 8f9f752

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CutCode/ViewModels/MainViewModel.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,15 +49,15 @@ public MainViewModel(IWindowManager _windowManager,IThemeService themeService, I
4949
sideBarBtns.Add(new SideBarBtnModel("Home", _themeService));
5050
sideBarBtns.Add(new SideBarBtnModel("Add", _themeService));
5151
sideBarBtns.Add(new SideBarBtnModel("Favourite", _themeService));
52-
sideBarBtns.Add(new SideBarBtnModel("Share", _themeService));
52+
//sideBarBtns.Add(new SideBarBtnModel("Share", _themeService));
5353
sideBarBtns.Add(new SideBarBtnModel("Settings", _themeService));
5454
sideBarBtns[0].background = _themeService.IsLightTheme ? ColorCon.Convert("#FCFCFC") : ColorCon.Convert("#36393F");
5555

5656

5757
Pages = new List<System.Object>() { new HomeViewModel(_themeService, pageService, _dataBase),
5858
new AddViewModel(_themeService, pageService, _dataBase),
5959
new FavViewModel(_themeService, pageService, _dataBase),
60-
new ShareViewModel(_themeService, pageService, _dataBase),
60+
//new ShareViewModel(_themeService, pageService, _dataBase),
6161
new SettingViewModel(_themeService, _dataBase, notifyManager) };
6262
pageService.Page = Pages[0];
6363
}

CutCode/Views/NotificationDialogView.xaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
</Grid.RowDefinitions>
4646
<Label Grid.Row="0" FontSize="10.5" FontFamily="{StaticResource poppins_semibold}" Content="Notification" Foreground="{Binding textColor}"/>
4747
<Label Grid.Row="1" Foreground="{Binding textColor}" Content="{Binding message}" Margin="0,-12,0,0"
48-
FontSize="14" FontFamily="{StaticResource poppins_semibold}"/>
48+
FontSize="14" FontFamily="{StaticResource poppins_regular}"/>
4949
</Grid>
5050
</Border>
5151
</UserControl>

0 commit comments

Comments
 (0)