Skip to content

Commit

Permalink
makes piggy stay to the left of other indicators
Browse files Browse the repository at this point in the history
  • Loading branch information
bluppfisk committed May 13, 2018
1 parent 089c243 commit 3c42177
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions coin/coin.py
Expand Up @@ -146,6 +146,7 @@ def _start_main(self):
self.main_item = AppIndicator.Indicator.new(
self.config.get('app').get('name'), self.icon, AppIndicator.IndicatorCategory.APPLICATION_STATUS)
self.main_item.set_status(AppIndicator.IndicatorStatus.ACTIVE)
self.main_item.set_ordering_index(0)
self.main_item.set_menu(self._menu())

def _start_gui(self):
Expand Down
1 change: 1 addition & 0 deletions coin/indicator.py
Expand Up @@ -58,6 +58,7 @@ def start(self):
"CoinPriceIndicator_" + str(self.unique_id),
icon, AppIndicator.IndicatorCategory.APPLICATION_STATUS)
self.indicator_widget.set_status(AppIndicator.IndicatorStatus.ACTIVE)
self.indicator_widget.set_ordering_index(0)
self.indicator_widget.set_menu(self._menu())
self._start_exchange()

Expand Down
2 changes: 1 addition & 1 deletion config.yaml
Expand Up @@ -4,7 +4,7 @@ app:
name: Coin Price Indicator
description: A cryptocurrency price ticker applet for Ubuntu
url: https://github.com/nilgradisnik/coinprice-indicator
version: "1.7.4"
version: "1.7.5"

authors:
- name: Nil Gradisnik
Expand Down

0 comments on commit 3c42177

Please sign in to comment.