-/*
+/* batteryviewer: Display battery metrics
+ * Copyright (C) 2023 Scott Worley <scottworley@scottworley.com>
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, version 3.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
+ *
+ *
+ *
* h/t https://ptomato.name/advanced-gtk-techniques/html/custom-container.html
* for examples of how to make GTK widgets
*/
GtkAllocation allocation;
gtk_widget_get_allocation(widget, &allocation);
- draw_axis(priv, cr, &allocation);
draw_data(priv, cr, &allocation);
+ draw_axis(priv, cr, &allocation);
return TRUE;
}