Skip to content

Commit 21df823

Browse files
authored
Added a caption to the form of the StringGrid Sample
1 parent ac27c9e commit 21df823

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

samples/StringGrid/stringgrid.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
class StringGridSample(Form):
55

66
def __init__(self, owner):
7+
self.caption = "String Grid Sample"
8+
79
self.string_grid = StringGrid(self)
810
self.currency_column1 = CurrencyColumn(self.string_grid)
911
self.glyph_column1 = GlyphColumn(self.string_grid)
@@ -185,4 +187,4 @@ def main():
185187

186188

187189
if __name__ == "__main__":
188-
main()
190+
main()

0 commit comments

Comments
 (0)