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:
parent
3478e66044
commit
2af093220f
@ -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
|
||||
}
|
||||
|
@ -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){
|
||||
|
@ -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>
|
||||
|
@ -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
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user