On 24.01.2011 14:12, Vincent van Ravesteijn wrote:
>>>
>>
>> I've fixed cmake. But someone should update src/frontends/qt4/Makefile.am
>>
> 
> Still no luck here.
> 
> The icon is in qrc_resources.cxx and Resources.qrc, but it doesn't
> show in LyX :(.

Does this help?

Peter
Index: src/frontends/qt4/GuiView.cpp
===================================================================
--- src/frontends/qt4/GuiView.cpp	(revision 37318)
+++ src/frontends/qt4/GuiView.cpp	(working copy)
@@ -445,7 +445,7 @@
 	// add busy indicator to statusbar
 	QLabel * busylabel = new QLabel(statusBar());
 	statusBar()->addPermanentWidget(busylabel);
-	QString fn = toqstr(lyx::libFileSearch("images", "busy.gif").absFileName());
+	QString fn = toqstr(lyx::libFileSearch("images/", "busy", "gif").absFileName());
 	QMovie * busyanim = new QMovie(fn, QByteArray(), busylabel);
 	busylabel->setMovie(busyanim);
 	busyanim->start();

Reply via email to