mirror of
https://github.com/swaywm/sway.git
synced 2025-04-04 11:27:47 +03:00
tray: tidy code
This includes some refactoring and fixing a small memory leak.
This commit is contained in:
parent
3b894c387d
commit
68f53cd509
4 changed files with 17 additions and 28 deletions
|
@ -3,16 +3,16 @@
|
|||
|
||||
#include "list.h"
|
||||
|
||||
enum subdir_type {
|
||||
THRESHOLD,
|
||||
SCALABLE,
|
||||
FIXED
|
||||
};
|
||||
|
||||
struct icon_theme_subdir {
|
||||
char *name;
|
||||
int size;
|
||||
enum subdir_type type;
|
||||
|
||||
enum {
|
||||
THRESHOLD,
|
||||
SCALABLE,
|
||||
FIXED
|
||||
} type;
|
||||
|
||||
int max_size;
|
||||
int min_size;
|
||||
int threshold;
|
||||
|
@ -39,6 +39,5 @@ void finish_themes(list_t *themes, list_t *basedirs);
|
|||
*/
|
||||
char *find_icon(list_t *themes, list_t *basedirs, char *name, int size,
|
||||
char *theme, int *min_size, int *max_size);
|
||||
char *find_icon_in_dir(char *name, char *dir, int *min_size, int *max_size);
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue