Skip to content
Snippets Groups Projects

Incr. size dummy QACanvas to 5x5 pixels, fix bad text size w/ Deb12

Merged Pierre-Alain Loizeau requested to merge p.-a.loizeau/cbmroot:fix_ttf_debian12 into master
1 file
+ 3
1
Compare changes
  • Side-by-side
  • Inline
+ 3
1
@@ -52,7 +52,9 @@ class CbmQaCanvas : public TCanvas {
{
/// the static variable will be initialised at the first call;
/// deleted at the application end (c++11)
static CbmQaCanvas dummy("CbmQaDummyCanvas", "CbmQaDummyCanvas", 1, 1);
/// Note: Sizes 1x1 to 3x3 pixels lead to crazy text size and an error under Debian 12
/// Note: Size 4x4 lead to a pad with size 0 and not statbox under Debian 12
static CbmQaCanvas dummy("CbmQaDummyCanvas", "CbmQaDummyCanvas", 5, 5);
return dummy;
}
Loading