Skip to content

Commit c3d9a0a

Browse files
author
arch
committed
change font color
1 parent 25e4ace commit c3d9a0a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

funscript_editor/ui/opencvui.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ def print_time(self, current_frame_number: int) -> None:
286286
self.print_text(txt, text_position_x = 'right')
287287

288288

289-
def print_text(self, txt, color: tuple = (243,153,29), text_position_x: str = 'left') -> None:
289+
def print_text(self, txt, color: tuple = (0,0,255), text_position_x: str = 'left') -> None:
290290
""" Draw text to an image/frame
291291
292292
Args:
@@ -384,7 +384,7 @@ def show_loading_screen(self, txt: str = "Please wait...") -> None:
384384
"""
385385
if self.preview_image is not None:
386386
self.set_background_image(np.full(self.preview_image.shape, 0, dtype=np.uint8))
387-
self.print_text(txt)
387+
self.print_text(txt, color=(0,0,255))
388388
self.show()
389389

390390

0 commit comments

Comments
 (0)