diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/App.xaml.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/App.xaml.cs
index 025d94d83d20aaba77726901bb980966b06d27e9..2017094fbbf904bb8b702636efab118817f2a96d 100644
--- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/App.xaml.cs
+++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/App.xaml.cs
@@ -23,9 +23,13 @@ namespace InnoLabProjektDektopApp
 
         public App()
         {
+            // enable high DPI support
+            System.Windows.FrameworkElement.LanguageProperty.OverrideMetadata(
+                typeof(System.Windows.FrameworkElement),
+                new FrameworkPropertyMetadata(System.Windows.Markup.XmlLanguage.GetLanguage(System.Globalization.CultureInfo.CurrentCulture.IetfLanguageTag)));
 
         }
-        
+
 
         protected override void OnStartup(StartupEventArgs e)
         {
diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/FirstLaunch/03_2ProgramsList.xaml b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/FirstLaunch/03_2ProgramsList.xaml
index 20db2a2f593816725fd26dd5f6f65fc3d67713d0..578869fe4905eeafa52bb14984416667491f6d03 100644
--- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/FirstLaunch/03_2ProgramsList.xaml
+++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Screens/FirstLaunch/03_2ProgramsList.xaml
@@ -85,7 +85,7 @@
                 </Border>
             </Grid>
             <TextBlock Margin="0,10,0,0"
-                       Text="On the left side, you can find the programs that you marked as distracting. On the left, you find all currently running programs that you can potentially add to the distracting programs." />
+                       Text="On the left side, you can find the programs that you marked as distracting. On the right, you find all currently running programs that you can potentially add to the distracting programs." />
 
             <!-- Überschrift -->
             <Grid Margin="0,20">
diff --git a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Utils/NotifyIconManager.cs b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Utils/NotifyIconManager.cs
index cce6aeb7e816456939a41e22a89ba1fe3a3eb19e..5e2585d295847c8eb2e8975e51956169c11e8ac1 100644
--- a/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Utils/NotifyIconManager.cs
+++ b/InnoLabProjektDektopApp/InnoLabProjektDektopApp/Utils/NotifyIconManager.cs
@@ -131,8 +131,7 @@ namespace InnoLabProjektDektopApp.Utils
             // Reopen the context menu if requested
             if (showContextMenu)
             {
-                var mousePosition = System.Windows.Forms.Control.MousePosition;
-                _notifyIcon.ContextMenuStrip.Show(mousePosition);
+                _notifyIcon.ContextMenuStrip.Show();
             }
         }