Your ROOT_URL in app.ini is https://gitea.jennalody.de/ but you are visiting https://gitea.jenslody.de/jenna/gnome-shell-extension-openweather/commit/167abe14ebca3f9b20f278802f30cf54334a22d1 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fix issue #8

yahoo_weather
Neroth 13 years ago
parent 3c5313969b
commit 167abe14eb
  1. 4
      src/extension.js

@ -148,14 +148,14 @@ WeatherMenuButton.prototype = {
switch (this._position_in_panel) {
case WeatherPosition.LEFT:
children = Main.panel._leftBox.get_children();
Main.panel._leftBox.insert_actor (this.actor, children.length-1);
Main.panel._leftBox.add(this.actor, children.length-1);
break;
case WeatherPosition.CENTER:
Main.panel._centerBox.add(this.actor, { y_fill: true });
break;
case WeatherPosition.RIGHT:
children = Main.panel._rightBox.get_children();
Main.panel._rightBox.insert_actor(this.actor, children.length-1);
Main.panel._rightBox.insert_child_at_index(this.actor, 0);
break;
}

Loading…
Cancel
Save