qt link path3926 hasn't been detected
-
Hi everyone,
I discover this topic.:
Re: How to hide SVG warnings in console?The person was having the same problem I am having now.
What did he see?Does anyone know how to solve the problem? I don't even know what the problem is, so explaining what is happening would be nice too. I am loading some SVG files in my program. Is there a problem with SVG files in general or would it be a problem with mines?
Thanks for taking the time
-
Hi! The problem is that your SVG files are broken. E.g. they reference gradiants that have not been defined. Obviously the SVG engine is fault tolerant and tries to render something, just giving the warnings you see. If you can't fix the files, you can suppress these warnings. Easy way to do this is by setting the following environment variable:
QT_LOGGING_RULES=qt.svg.warning=false. For more info / more options, see QLoggingCategory Class. -
Hi! The problem is that your SVG files are broken. E.g. they reference gradiants that have not been defined. Obviously the SVG engine is fault tolerant and tries to render something, just giving the warnings you see. If you can't fix the files, you can suppress these warnings. Easy way to do this is by setting the following environment variable:
QT_LOGGING_RULES=qt.svg.warning=false. For more info / more options, see QLoggingCategory Class.@Wieland
Hi
Do you know when this flag is available from ?
https://bugreports.qt.io/browse/QTBUG-52079Seems to suggest its from 5.9 ?
-
@Wieland
Hi
Do you know when this flag is available from ?
https://bugreports.qt.io/browse/QTBUG-52079Seems to suggest its from 5.9 ?
@mrjj Oh, you're right, it's new in 5.9.
-
@mrjj
I took them from this kit
EDIT:
I open and save them with lodrawlodraw --convert-to svg *.svgThey just get worst in my opinion. I barely see the item now and the application keep yelling:
Could not resolve property : pattern1
Could not resolve property : pattern2The program start lagging too, I had to kill it.
-
@mrjj
I took them from this kit
EDIT:
I open and save them with lodrawlodraw --convert-to svg *.svgThey just get worst in my opinion. I barely see the item now and the application keep yelling:
Could not resolve property : pattern1
Could not resolve property : pattern2The program start lagging too, I had to kill it.