Skip to content

Commit 4a1d54f

Browse files
author
Alain M
committed
Add travix notification
1 parent 3c5e4e7 commit 4a1d54f

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.travis.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,6 @@ install:
2222

2323
script:
2424
- houston ci
25-
25+
26+
notifications:
27+
slack: ele:1X5dUSiN3YGr69a5rAZVn5Ra

data/com.github.alainm23.byte.appdata.xml.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -198,8 +198,8 @@
198198
<url type="donation">https://www.patreon.com/alainm23</url>
199199
<url type="help">https://www.patreon.com/alainm23</url>
200200
<custom>
201-
<value key="x-appcenter-color-primary">#FE2851</value>
202-
<value key="x-appcenter-color-primary-text">#0A005D</value>
201+
<value key="x-appcenter-color-primary">#2D0941</value>
202+
<value key="x-appcenter-color-primary-text">#fe2851</value>
203203
<value key="x-appcenter-suggested-price">3</value>
204204
</custom>
205205
</component>

src/Widgets/MediaControl.vala

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ public class Widgets.MediaControl : Gtk.Revealer {
4747
var options_button = new Gtk.Button.from_icon_name ("view-more-horizontal-symbolic", Gtk.IconSize.MENU);
4848
options_button.valign = Gtk.Align.CENTER;
4949
options_button.can_focus = false;
50-
options_button.margin_end = 6;
5150
options_button.tooltip_text = _("Options");
5251
options_button.get_style_context ().add_class (Gtk.STYLE_CLASS_FLAT);
5352
options_button.get_style_context ().add_class ("options-button");
@@ -58,14 +57,14 @@ public class Widgets.MediaControl : Gtk.Revealer {
5857
history_button.add (new Gtk.Image.from_icon_name ("radio-track-played-recent-symbolic", Gtk.IconSize.MENU));
5958
history_button.valign = Gtk.Align.CENTER;
6059
history_button.can_focus = false;
61-
history_button.margin_end = 3;
6260
history_button.tooltip_text = _("Radio tracks history");
6361
history_button.get_style_context ().add_class (Gtk.STYLE_CLASS_FLAT);
6462
history_button.get_style_context ().add_class ("options-button");
6563
history_button.get_style_context ().add_class ("button-color");
6664
history_button.get_style_context ().remove_class ("button");
6765

6866
var button_stack = new Gtk.Stack ();
67+
button_stack.width_request = 40;
6968
button_stack.transition_type = Gtk.StackTransitionType.CROSSFADE;
7069
button_stack.add_named (options_button, "options_button");
7170
button_stack.add_named (history_button, "history_button");

0 commit comments

Comments
 (0)