From 8ec78ec61b781c82b0de97321a4703a74e81d41a Mon Sep 17 00:00:00 2001 From: MikeTheWatchGuy Date: Wed, 21 Nov 2018 09:11:53 -0500 Subject: [PATCH] Added information on new Qt port. --- docs/scenarios/gui.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/scenarios/gui.rst b/docs/scenarios/gui.rst index 34c3ac134..d52a2924f 100644 --- a/docs/scenarios/gui.rst +++ b/docs/scenarios/gui.rst @@ -92,7 +92,7 @@ non-GUI applications. PySimpleGUI ------ -`PySimpleGUI `_ is a wrapper for the Tkinter. The amount of code required to implement custom GUIs is much shorter using PySimpleGUI than if the same GUI were written directly using tkinter. Having Tkinter as a base results in the ability to run on a larger number of platforms than other GUI frameworks. +`PySimpleGUI `_ is a wrapper for Tkinter and Qt (others on the way). The amount of code required to implement custom GUIs is much shorter using PySimpleGUI than if the same GUI were written directly using tkinter or Qt. PySimpleGUI code can be "ported" between GUI frameworks by changing import statement. .. code-block:: console