Skip to content

Commit 1b052f5

Browse files
committed
update
1 parent 62d928e commit 1b052f5

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

Python_GUI/nodeChangeFPS/nodeChangeFPS.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
#file, You can obtain one at http://mozilla.org/MPL/2.0/. */
44
#Created by Fabrice Fernandez on 17/01/2018.
55

6+
import os
67
from NatronEngine import*
78
from NatronGui import *
89
from PySide.QtGui import *
@@ -35,6 +36,7 @@ def nodeChangeFPS():
3536
nodeFramerate.set(newFPS)
3637

3738
print ('Read Node(s) set to : ') + str(nodeFramerate.get()) + (' fps.')
39+
os.write(1, '\n' + 'Read Node(s) set to : ' + str(nodeFramerate.get()) + ' fps.' + '\n' )
3840

3941
customFPS = n.getParam("customFps")
4042
customFPS.set(1)

Python_GUI/nodeColorChange/nodeColorChange.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
#file, You can obtain one at http://mozilla.org/MPL/2.0/. */
44
#Created by Fabrice Fernandez on 17/01/2018.
55

6+
import os
67
from NatronEngine import*
78
from NatronGui import *
89
from PySide.QtGui import *
@@ -28,4 +29,5 @@ def nodeColorChange():
2829
for n in selectedNodes:
2930
n.setColor(newColor[0],newColor[1],newColor[2])
3031

31-
print ( 'Node(s) color changed to R : ' + str(newColor[0]) + ' , G : ' + str(newColor[1]) + ' , B : ' + str(newColor[2]) )
32+
print ('Node(s) color changed to R : ' + str(newColor[0]) + ' , G : ' + str(newColor[1]) + ' , B : ' + str(newColor[2]) )
33+
os.write( 1, '\n' + 'Node(s) color changed to R : ' + str(newColor[0]) + ' , G : ' + str(newColor[1]) + ' , B : ' + str(newColor[2]) + '\n' )

0 commit comments

Comments
 (0)