From c9656c781519ec4a8977b7536931fa27e037a71f Mon Sep 17 00:00:00 2001 From: MikeTheWatchGuy Date: Thu, 6 Sep 2018 17:08:29 -0400 Subject: [PATCH] Removed window border --- Demo_OpenCV.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Demo_OpenCV.py b/Demo_OpenCV.py index d326979d..f7b9f68c 100644 --- a/Demo_OpenCV.py +++ b/Demo_OpenCV.py @@ -30,7 +30,7 @@ def main(): [sg.ReadFormButton('Exit', size=(10, 2), pad=((280, 0), 3), font='Helvetica 14')]] # create the form and show it without the plot - form = sg.FlexForm('Demo Application - Embedding Matplotlib In PySimpleGUI') + form = sg.FlexForm('Demo Application - Embedding Matplotlib In PySimpleGUI', no_titlebar=True) form.Layout(layout) form.ReadNonBlocking()