diff options
author | Robert Tari <robert@tari.in> | 2023-05-06 02:53:23 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2023-05-07 20:52:12 +0200 |
commit | 36ac6b17fe6e4087c49b636123071bdfc1533f5a (patch) | |
tree | 6655d3c886c3bee9e592fc007531d5b98cadd78c | |
parent | a919238f30e02cc996eb842d0ab4a0922964d77e (diff) | |
download | arctica-greeter-36ac6b17fe6e4087c49b636123071bdfc1533f5a.tar.gz arctica-greeter-36ac6b17fe6e4087c49b636123071bdfc1533f5a.tar.bz2 arctica-greeter-36ac6b17fe6e4087c49b636123071bdfc1533f5a.zip |
Add missing default to switch
-rw-r--r-- | src/dash-box.vala | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/dash-box.vala b/src/dash-box.vala index 1073aa5..4d907db 100644 --- a/src/dash-box.vala +++ b/src/dash-box.vala @@ -2,6 +2,7 @@ * * Copyright (C) 2011,2012 Canonical Ltd * Copyright (C) 2015 Mike Gabriel <mike.gabriel@das-netzwerkteam.de> + * Copyright (C) 2023 Robert Tari * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3 as @@ -17,6 +18,7 @@ * * Authors: Michael Terry <michael.terry@canonical.com> * Mike Gabriel <mike.gabriel@das-netzwerkteam.de> + * Robert Tari <robert@tari.in> */ public class DashBox : Gtk.Box @@ -141,6 +143,8 @@ public class DashBox : Gtk.Box queue_resize (); orig.grab_focus (); break; + default: + return; } } |