fix icons

This commit is contained in:
Nishi 2025-12-27 19:58:34 +09:00
commit c9283ee7ce
Signed by: nishi
GPG key ID: 27EF69B208EB9343
4 changed files with 14 additions and 14 deletions

View file

@ -237,11 +237,11 @@ int main() {
pxrepeatsong = MwLoadXPM(window, repeatsong_xpm);
pxshuffle = MwLoadXPM(window, shuffle_xpm);
pxoptical = MwLoadImage(window, ICON16DIR "/optical.png");
pxfoldermusic = MwLoadImage(window, ICON16DIR "/folder-music.png");
pxartist = MwLoadImage(window, ICON16DIR "/artist.png");
pxgenre = MwLoadImage(window, ICON16DIR "/genre.png");
pxradio = MwLoadImage(window, ICON128DIR "/radio.png");
pxoptical = MwLoadImage(window, ICON16DIR "/devices/media-optical.png");
pxfoldermusic = MwLoadImage(window, ICON16DIR "/devices/folder-music.png");
pxartist = MwLoadImage(window, ICON16DIR "/places/artist.png");
pxgenre = MwLoadImage(window, ICON16DIR "/actions/view-media-genre.png");
pxradio = MwLoadImage(window, ICON128DIR "/devices/radio.png");
MwSetVoid(album, MwNpixmap, pxalbum);

View file

@ -59,9 +59,9 @@ int main() {
COMMON_LOOK,
NULL);
empty = MwLoadImage(window, ICON128DIR "/mailempty.png");
full = MwLoadImage(window, ICON128DIR "/mailfull.png");
mail = MwLoadImage(window, ICON128DIR "/mail.png");
empty = MwLoadImage(window, ICON128DIR "/status/mail-read.png");
full = MwLoadImage(window, ICON128DIR "/status/mail-unread.png");
mail = MwLoadImage(window, ICON128DIR "/places/mailbox.png");
if(empty == NULL) empty = MwLoadXPM(window, mailempty);
if(full == NULL) full = MwLoadXPM(window, mailfull);
if(mail == NULL) mail = MwLoadXPM(window, mailempty);

View file

@ -145,7 +145,7 @@ int main() {
NULL);
opengl = MwCreateWidget(MwOpenGLClass, "opengl", window, 0, 0, 150, 150);
pxclock = MwLoadImage(window, ICON128DIR "/clock.png");
pxclock = MwLoadImage(window, ICON128DIR "/actions/clock.png");
MwOpenGLMakeCurrent(opengl);

View file

@ -91,11 +91,11 @@ int main(int argc, char** argv) {
bzoomin = MwCreateWidget(MwButtonClass, "zoomin", window, 0, 0, 0, 0);
bzoomout = MwCreateWidget(MwButtonClass, "zoomout", window, 0, 0, 0, 0);
pxprojector = MwLoadImage(window, ICON128DIR "/projector.png");
pxprev = MwLoadImage(window, ICON16DIR "/previous.png");
pxnext = MwLoadImage(window, ICON16DIR "/next.png");
pxzoomin = MwLoadImage(window, ICON16DIR "/zoomin.png");
pxzoomout = MwLoadImage(window, ICON16DIR "/zoomout.png");
pxprojector = MwLoadImage(window, ICON128DIR "/devices/projector.png");
pxprev = MwLoadImage(window, ICON16DIR "/actions/previous.png");
pxnext = MwLoadImage(window, ICON16DIR "/actions/next.png");
pxzoomin = MwLoadImage(window, ICON16DIR "/actions/zoom-in.png");
pxzoomout = MwLoadImage(window, ICON16DIR "/actions/zoom-out.png");
pad = ButtonHeight / 2 - 16 / 2 - MwDefaultBorderWidth(window);