1
0
mirror of https://github.com/Swordfish90/cool-retro-term.git synced 2025-01-18 12:15:27 +00:00

Removing unuseful prints

This commit is contained in:
Filippo Scognamiglio 2014-04-16 19:37:33 +02:00
parent 3478e66044
commit 2af093220f
4 changed files with 3 additions and 4 deletions

View File

@ -208,5 +208,5 @@ ShaderEffect {
"gl_FragColor = vec4(finalColor *"+brightness.toFixed(1)+", qt_Opacity);
}"
onStatusChanged: console.log(log) //Print warning messages
onStatusChanged: if (log) console.log(log) //Print warning messages
}

View File

@ -101,7 +101,6 @@ Item{
onWheel:
wheel.angleDelta.y > 0 ? kterminal.item.scrollUp() : kterminal.item.scrollDown()
onClicked: {
console.log(correctDistortion(0,0))
if (mouse.button == Qt.RightButton){
contextmenu.popup();
} else if (mouse.button == Qt.MiddleButton){

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE QtCreatorProject>
<!-- Written by QtCreator 3.0.1, 2014-04-16T10:55:04. -->
<!-- Written by QtCreator 3.0.1, 2014-04-16T19:36:46. -->
<qtcreator>
<data>
<variable>ProjectExplorer.Project.ActiveTarget</variable>

View File

@ -72,5 +72,5 @@ ShaderEffect{
gl_FragColor = vec4(final_color * txt_normal.a, txt_color.a * qt_Opacity * reflection_alpha);
}"
onStatusChanged: console.log(log) //Print warning messages
onStatusChanged: if (log) console.log(log) //Print warning messages
}