From fe425252618340ac598666c4ed96fbe1a8269032 Mon Sep 17 00:00:00 2001 From: Ryo Nakano Date: Sat, 12 Sep 2026 20:26:01 +0900 Subject: [PATCH] Use new ServerType enum --- src/Indicator/Indicator.vala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Indicator/Indicator.vala b/src/Indicator/Indicator.vala index 0670a540b..ef8f16730 100644 --- a/src/Indicator/Indicator.vala +++ b/src/Indicator/Indicator.vala @@ -94,10 +94,10 @@ public class Monitor.Indicator : Wingpanel.Indicator { } -public Wingpanel.Indicator ? get_indicator (Module module, Wingpanel.IndicatorManager.ServerType server_type) { +public Wingpanel.Indicator ? get_indicator (Module module, Wingpanel.ServerType server_type) { debug ("Activating Monitor Indicator"); - if (server_type != Wingpanel.IndicatorManager.ServerType.SESSION) { + if (server_type != Wingpanel.ServerType.SESSION) { /* We want to display our monitor indicator only in the "normal" session, not on the login screen, so stop here! */ return null; }