Use Label's base style `underline` when no highlights are provided

Antonio Scandurra created

Change summary

gpui/src/elements/label.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

gpui/src/elements/label.rs 🔗

@@ -55,7 +55,7 @@ impl Label {
                 RunStyle {
                     font_id,
                     color: self.style.text.color,
-                    underline: false,
+                    underline: self.style.text.underline,
                 }
             )];
         }