From ea525d45c3005d239ab964f88afadc98b08fcae9 Mon Sep 17 00:00:00 2001 From: Claudio Sacerdoti Coen Date: Tue, 6 Sep 2005 08:59:09 +0000 Subject: [PATCH] Bug fixed: the small logo was searched in the wrong path. --- helm/matita/matitaMathView.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helm/matita/matitaMathView.ml b/helm/matita/matitaMathView.ml index 4bbaaddea..de08f538e 100644 --- a/helm/matita/matitaMathView.ml +++ b/helm/matita/matitaMathView.ml @@ -400,7 +400,7 @@ class sequentsViewer ~(notebook:GPack.notebook) ~(cicMathView:cicMathView) () = (* scrolled window to which the sequentViewer is currently attached *) val logo = (GMisc.image ~file:(BuildTimeConf.runtime_base_dir ^ "/logo/matita_medium.png") () :> GObj.widget) - val logo_with_qed = (GMisc.image ~file:"logo/matita_small.png" () :> GObj.widget) + val logo_with_qed = (GMisc.image ~file:(BuildTimeConf.runtime_base_dir ^ "/logo/matita_small.png") () :> GObj.widget) method load_logo = notebook#set_show_tabs false; -- 2.39.2