We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa8eaae commit 2c7baf3Copy full SHA for 2c7baf3
1 file changed
src/MainView.vala
@@ -21,6 +21,8 @@ public class Bluetooth.MainView : Switchboard.SettingsPage {
21
}
22
23
construct {
24
+ device_model = new GLib.ListStore (typeof (Services.Device));
25
+
26
var empty_alert = new Granite.Placeholder (_("No Devices Found")) {
27
description = _("Please ensure that your devices are visible and ready for pairing.")
28
};
@@ -55,8 +57,6 @@ public class Bluetooth.MainView : Switchboard.SettingsPage {
55
57
56
58
child = frame;
59
- device_model = new GLib.ListStore (typeof (Services.Device));
-
60
manager = Bluetooth.Services.ObjectManager.get_default ();
61
if (manager.retrieve_finished) {
62
complete_setup ();
0 commit comments