gdm: Don't throw an error if there's no logo file
This commit is contained in:
@ -538,7 +538,7 @@ const LoginDialog = new Lang.Class({
|
||||
},
|
||||
|
||||
_updateLogoTexture: function(cache, file) {
|
||||
if (!this._logoFile.equal(file))
|
||||
if (this._logoFile && !this._logoFile.equal(file))
|
||||
return;
|
||||
|
||||
this._logoBin.destroy_all_children();
|
||||
|
Reference in New Issue
Block a user