We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88d0219 commit 7c7299eCopy full SHA for 7c7299e
src/slice/__main__.py
@@ -36,6 +36,7 @@
36
QGridLayout,
37
QGroupBox,
38
QHBoxLayout,
39
+ QHeaderView,
40
QLabel,
41
QMainWindow,
42
QPushButton,
@@ -672,7 +673,11 @@ def load_font(self, filepath):
672
673
674
name_table_was_set = self.name_table_model.load_font(self.font_model)
675
axis_value_table_was_set = self.fvar_table_model.load_font(self.font_model)
676
+
677
self.fvar_table_view.resizeColumnToContents(0)
678
+ self.fvar_table_view.verticalHeader().resizeSections(
679
+ QHeaderView.ResizeToContents
680
+ )
681
682
# uncheck all bit flag setting check boxes
683
self.os2_fsselection_bit_0_checkbox.setChecked(False)
0 commit comments