[vlc-commits] [Git][videolan/vlc][master] macosx: Ensure hiding of text field in playqueue table cell view when string empty
    Steve Lhomme (@robUx4) 
    gitlab at videolan.org
       
    Sat Mar 22 14:24:53 UTC 2025
    
    
  
Steve Lhomme pushed to branch master at VideoLAN / VLC
Commits:
9f5a0631 by Claudio Cambra at 2025-03-22T14:12:25+00:00
macosx: Ensure hiding of text field in playqueue table cell view when string empty
Signed-off-by: Claudio Cambra <developer at claudiocambra.com>
- - - - -
1 changed file:
- modules/gui/macosx/playqueue/VLCPlayQueueTableCellView.m
Changes:
=====================================
modules/gui/macosx/playqueue/VLCPlayQueueTableCellView.m
=====================================
@@ -100,7 +100,7 @@
         songDetailString = item.artistName;
     }
 
-    if (songDetailString) {
+    if (songDetailString && ![songDetailString isEqualToString:@""]) {
         self.mediaTitleTextField.hidden = YES;
         self.secondaryMediaTitleTextField.hidden = NO;
         self.artistTextField.hidden = NO;
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/9f5a0631850d45d6ff6191c84662860c86b4571f
-- 
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/9f5a0631850d45d6ff6191c84662860c86b4571f
You're receiving this email because of your account on code.videolan.org.
VideoLAN code repository instance
    
    
More information about the vlc-commits
mailing list