diff --git a/aqt/clayout.py b/aqt/clayout.py index f341bde81..db177a7af 100644 --- a/aqt/clayout.py +++ b/aqt/clayout.py @@ -92,6 +92,9 @@ class CardLayout(QDialog): tform.tlayout1.setContentsMargins(0, 11, 0, 0) tform.tlayout2.setContentsMargins(0, 11, 0, 0) tform.tlayout3.setContentsMargins(0, 11, 0, 0) + if len(self.cards) > 1: + tform.groupBox_3.setTitle(_( + "Styling (shared between cards)")) c(tform.front, SIGNAL("textChanged()"), self.saveCard) c(tform.css, SIGNAL("textChanged()"), self.saveCard) c(tform.back, SIGNAL("textChanged()"), self.saveCard)