From 4d68671eb912b95267cd462eca95f43bfaa2db7b Mon Sep 17 00:00:00 2001 From: David Aguilar Date: Tue, 27 Dec 2011 02:02:02 -0800 Subject: [PATCH] dag: Do not parent DAGView to the active window Signed-off-by: David Aguilar --- cola/dag/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cola/dag/__init__.py b/cola/dag/__init__.py index 68909955..1211fe07 100644 --- a/cola/dag/__init__.py +++ b/cola/dag/__init__.py @@ -19,7 +19,7 @@ def git_dag(model, opts=None, args=None): dag = DAG(model.currentbranch, 1000) dag.set_options(opts, args) - view = DAGView(model, dag, qtutils.active_window()) + view = DAGView(model, dag, None) ctl = DAGController(dag, view) view.show() view.raise_() -- 2.11.4.GIT