gorazdr

Results 4 issues of gorazdr

Hello I found problem with parsing customHeight row attribute. Problem is with with this code: info->customHeight = attributes.value(QLatin1String("customHeight")) == QLatin1String("1"); fix is: info->customHeight = (attributes.value(QLatin1String("customHeight")) == QLatin1String("1") || attributes.value(QLatin1String("customHeight")) ==...

Hello, I have a problem with databand positioning. Is it possible to overlay databand or offset-it? ![lm_preview](https://user-images.githubusercontent.com/5803440/109287038-59c1e580-7823-11eb-857a-4e8b3f5d71b8.png) This is template in designer ![Zaslonska slika 2021-02-26 10-57-28](https://user-images.githubusercontent.com/5803440/109287130-7f4eef00-7823-11eb-975b-91794c9b0657.png) Thanks, Gorazd

Hello, I found that if I set SVGItem variable svg image is not shown. Problem is that SVGItem::updateItemSize function is never called. I added this overloaded function to lrsvgitem: `bool...

I have something like this: PHP_FUNCTION(modify) { smart_str ss = { 0 }; zval *val; long opts = 0; zval *strings ; HashTable sht; if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "zla", &val, &opts,...