@@ -66,17 +66,20 @@ public MainWindow()
6666 {
6767 Debug . WriteLine ( $ "App Update Action: appId={ appId } ") ;
6868 _currentlyRunningAppId = appId ;
69+ var toolTip = "The detected Steam app ID for currently running title." ;
6970 var color = Brushes . OliveDrab ;
7071 if ( appId == MainModel . CONFIG_DEFAULT )
7172 {
7273 color = Brushes . Gray ;
74+ toolTip = "No application detected." ;
7375 }
7476 var appIdFixed = appId . Replace ( "_" , "__" ) ; // Single underscores makes underlined chars
7577 Dispatcher . Invoke ( ( ) =>
7678 {
7779 Debug . WriteLine ( $ "Setting AppID to: { appId } ") ;
7880 LabelApplication . Content = appIdFixed ;
7981 LabelApplication . Background = color ;
82+ LabelApplication . ToolTip = toolTip ;
8083 } ) ;
8184 } ,
8285
@@ -115,7 +118,7 @@ public MainWindow()
115118 else _activeKeys . Remove ( key ) ;
116119 if ( _activeKeys . Count > 0 ) LabelKeys . Content = string . Join ( ", " , _activeKeys ) ;
117120 else LabelKeys . Content = "None" ;
118- LabelKeys . ToolTip = "" ;
121+ LabelKeys . ToolTip = "The currently active inputs being detected. " ;
119122 LabelKeys . Background = Brushes . Gray ;
120123 }
121124 } ) ;
@@ -129,13 +132,13 @@ public MainWindow()
129132 if ( visible )
130133 {
131134 LabelKeys . Content = "Blocked" ;
132- LabelKeys . ToolTip = "The SteamVR Dashboard is visible which will block input from this application." ;
135+ LabelKeys . ToolTip = "The SteamVR Dashboard is visible which will block controller input from reaching this application." ;
133136 LabelKeys . Background = Brushes . Tomato ;
134137 }
135138 else
136139 {
137- LabelKeys . Content = "Unblocked " ;
138- LabelKeys . ToolTip = "" ;
140+ LabelKeys . Content = "None " ;
141+ LabelKeys . ToolTip = "Listening for incoming inputs from active controllers. " ;
139142 LabelKeys . Background = Brushes . Gray ;
140143 }
141144 } ) ;
0 commit comments