fix icons
This commit is contained in:
parent
ab110d8a7c
commit
c9283ee7ce
4 changed files with 14 additions and 14 deletions
|
|
@ -237,11 +237,11 @@ int main() {
|
||||||
pxrepeatsong = MwLoadXPM(window, repeatsong_xpm);
|
pxrepeatsong = MwLoadXPM(window, repeatsong_xpm);
|
||||||
pxshuffle = MwLoadXPM(window, shuffle_xpm);
|
pxshuffle = MwLoadXPM(window, shuffle_xpm);
|
||||||
|
|
||||||
pxoptical = MwLoadImage(window, ICON16DIR "/optical.png");
|
pxoptical = MwLoadImage(window, ICON16DIR "/devices/media-optical.png");
|
||||||
pxfoldermusic = MwLoadImage(window, ICON16DIR "/folder-music.png");
|
pxfoldermusic = MwLoadImage(window, ICON16DIR "/devices/folder-music.png");
|
||||||
pxartist = MwLoadImage(window, ICON16DIR "/artist.png");
|
pxartist = MwLoadImage(window, ICON16DIR "/places/artist.png");
|
||||||
pxgenre = MwLoadImage(window, ICON16DIR "/genre.png");
|
pxgenre = MwLoadImage(window, ICON16DIR "/actions/view-media-genre.png");
|
||||||
pxradio = MwLoadImage(window, ICON128DIR "/radio.png");
|
pxradio = MwLoadImage(window, ICON128DIR "/devices/radio.png");
|
||||||
|
|
||||||
MwSetVoid(album, MwNpixmap, pxalbum);
|
MwSetVoid(album, MwNpixmap, pxalbum);
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -59,9 +59,9 @@ int main() {
|
||||||
COMMON_LOOK,
|
COMMON_LOOK,
|
||||||
NULL);
|
NULL);
|
||||||
|
|
||||||
empty = MwLoadImage(window, ICON128DIR "/mailempty.png");
|
empty = MwLoadImage(window, ICON128DIR "/status/mail-read.png");
|
||||||
full = MwLoadImage(window, ICON128DIR "/mailfull.png");
|
full = MwLoadImage(window, ICON128DIR "/status/mail-unread.png");
|
||||||
mail = MwLoadImage(window, ICON128DIR "/mail.png");
|
mail = MwLoadImage(window, ICON128DIR "/places/mailbox.png");
|
||||||
if(empty == NULL) empty = MwLoadXPM(window, mailempty);
|
if(empty == NULL) empty = MwLoadXPM(window, mailempty);
|
||||||
if(full == NULL) full = MwLoadXPM(window, mailfull);
|
if(full == NULL) full = MwLoadXPM(window, mailfull);
|
||||||
if(mail == NULL) mail = MwLoadXPM(window, mailempty);
|
if(mail == NULL) mail = MwLoadXPM(window, mailempty);
|
||||||
|
|
|
||||||
|
|
@ -145,7 +145,7 @@ int main() {
|
||||||
NULL);
|
NULL);
|
||||||
|
|
||||||
opengl = MwCreateWidget(MwOpenGLClass, "opengl", window, 0, 0, 150, 150);
|
opengl = MwCreateWidget(MwOpenGLClass, "opengl", window, 0, 0, 150, 150);
|
||||||
pxclock = MwLoadImage(window, ICON128DIR "/clock.png");
|
pxclock = MwLoadImage(window, ICON128DIR "/actions/clock.png");
|
||||||
|
|
||||||
MwOpenGLMakeCurrent(opengl);
|
MwOpenGLMakeCurrent(opengl);
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -91,11 +91,11 @@ int main(int argc, char** argv) {
|
||||||
bzoomin = MwCreateWidget(MwButtonClass, "zoomin", window, 0, 0, 0, 0);
|
bzoomin = MwCreateWidget(MwButtonClass, "zoomin", window, 0, 0, 0, 0);
|
||||||
bzoomout = MwCreateWidget(MwButtonClass, "zoomout", window, 0, 0, 0, 0);
|
bzoomout = MwCreateWidget(MwButtonClass, "zoomout", window, 0, 0, 0, 0);
|
||||||
|
|
||||||
pxprojector = MwLoadImage(window, ICON128DIR "/projector.png");
|
pxprojector = MwLoadImage(window, ICON128DIR "/devices/projector.png");
|
||||||
pxprev = MwLoadImage(window, ICON16DIR "/previous.png");
|
pxprev = MwLoadImage(window, ICON16DIR "/actions/previous.png");
|
||||||
pxnext = MwLoadImage(window, ICON16DIR "/next.png");
|
pxnext = MwLoadImage(window, ICON16DIR "/actions/next.png");
|
||||||
pxzoomin = MwLoadImage(window, ICON16DIR "/zoomin.png");
|
pxzoomin = MwLoadImage(window, ICON16DIR "/actions/zoom-in.png");
|
||||||
pxzoomout = MwLoadImage(window, ICON16DIR "/zoomout.png");
|
pxzoomout = MwLoadImage(window, ICON16DIR "/actions/zoom-out.png");
|
||||||
|
|
||||||
pad = ButtonHeight / 2 - 16 / 2 - MwDefaultBorderWidth(window);
|
pad = ButtonHeight / 2 - 16 / 2 - MwDefaultBorderWidth(window);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue