Skip to content

Commit

Permalink
xfce_bluetooth: change name of friendly name label id
Browse files Browse the repository at this point in the history
  • Loading branch information
ncopa committed Sep 21, 2018
1 parent 868a5ec commit e80be42
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion data/bluetooth-devices.ui
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@
</packing>
</child>
<child>
<object class="GtkLabel" id="friendly_name">
<object class="GtkLabel" id="alias_label">
<property name="visible">True</property>
<property name="can_focus">False</property>
<property name="halign">start</property>
Expand Down
2 changes: 1 addition & 1 deletion src/xfce-bluetooth.vala
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ public class XfceBluetoothApp : GLib.Object {
powered_switch = builder.get_object("powered_switch") as Gtk.Switch;
powered_switch.set_active(adapter.powered);

alias_label = builder.get_object("friendly_name") as Gtk.Label;
alias_label = builder.get_object("alias_label") as Gtk.Label;
alias_label.set_label(adapter.alias);
find_devices();

Expand Down

0 comments on commit e80be42

Please sign in to comment.