@@ -6,7 +6,7 @@ void makeTopSection(IFPainter& img, InformationGatherer& info, int offsetX, int
6
6
7
7
// Draw text on top
8
8
std::string text = " Owner: " + info.getInfo (" owner" ) + " Version: " + info.getInfo (" version" ) + " Last Updated: " + info.getInfo (" lastUpdate" ) + " Classification: " + info.getInfo (" classification" );
9
- img.drawText (offsetX + width / 100 , offsetY + height / 1.5 , width / 1500 , width / 2000 , text, false , true );
9
+ img.drawText (offsetX + width / 100 , offsetY + height / 1.5 , width / 1500 , width / 2000 , text, false , true , false , 0 );
10
10
}
11
11
12
12
void makeBottomSection (IFPainter& img, InformationGatherer& info, int offsetX, int offsetY, int width, int height) {
@@ -15,7 +15,7 @@ void makeBottomSection(IFPainter& img, InformationGatherer& info, int offsetX, i
15
15
16
16
// Draw text on bottom
17
17
std::string text = " Preparer: " + info.getInfo (" preparer" ) + " Source File: " + info.getInfo (" file" ) + " Date Generated: " + info.getInfo (" dateGenerated" ) + " Model Checksum: " + info.getInfo (" checksum" );
18
- img.drawText (offsetX + width / 100 , offsetY + height / 1.5 , width / 1500 , width / 2000 , text, false , true );
18
+ img.drawText (offsetX + width / 100 , offsetY + height / 1.5 , width / 1500 , width / 2000 , text, false , true , false , 0 );
19
19
}
20
20
21
21
void makeFileInfoSection (IFPainter& img, InformationGatherer& info, int offsetX, int offsetY, int width, int height) {
0 commit comments