File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -252,6 +252,8 @@ public static void CheckAll(bool check)
252252 Program . mainForm . ignoreStreamListCheck = i < ( Program . mainForm . streamList . Items . Count - 1 ) ;
253253 Program . mainForm . streamList . Items [ i ] . Checked = check ;
254254 }
255+
256+ Program . mainForm . OnCheckedStreamsChange ( ) ;
255257 }
256258
257259 public static void InvertSelection ( object sender = null , EventArgs e = null )
@@ -261,6 +263,8 @@ public static void InvertSelection(object sender = null, EventArgs e = null)
261263 Program . mainForm . ignoreStreamListCheck = i < ( Program . mainForm . streamList . Items . Count - 1 ) ;
262264 Program . mainForm . streamList . Items [ i ] . Checked = ! Program . mainForm . streamList . Items [ i ] . Checked ;
263265 }
266+
267+ Program . mainForm . OnCheckedStreamsChange ( ) ;
264268 }
265269
266270 public static void CheckTracksOfType ( Stream . StreamType type )
@@ -270,6 +274,8 @@ public static void CheckTracksOfType(Stream.StreamType type)
270274 Program . mainForm . ignoreStreamListCheck = i < ( Program . mainForm . streamList . Items . Count - 1 ) ;
271275 Program . mainForm . streamList . Items [ i ] . Checked = ( ( MediaStreamListEntry ) Program . mainForm . streamList . Items [ i ] . Tag ) . Stream . Type == type ;
272276 }
277+
278+ Program . mainForm . OnCheckedStreamsChange ( ) ;
273279 }
274280
275281 #endregion
You can’t perform that action at this time.
0 commit comments