Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 7261 → Rev 7262

/programs/cmm/iconedit/iconedit.c
16,6 → 16,7
#include "../lib/gui.h"
#include "../lib/random.h"
#include "../lib/mem.h"
#include "../lib/cursor.h"
 
#include "../lib/obj/libimg.h"
#include "../lib/obj/box_lib.h"
31,7 → 32,7
// //
//===================================================//
 
#define T_TITLE "Icon Editor 0.50 Alpha"
#define T_TITLE "Icon Editor 0.51 Alpha"
 
#define TOOLBAR_H 24+8
#define PANEL_LEFT_W 16+5+5+3+3
114,6 → 115,15
0xFFFFFF,0xFFFFFF,0xFFFFFF,0xFFFFFF,0xFFFFFF,0xFFFFFF
};
 
CustomCursor Cursor;
dword CursorBar = FROM "cursors/bar.cur";
dword CursorFill = FROM "cursors/fill.cur";
dword CursorLine = FROM "cursors/line.cur";
dword CursorPencil = FROM "cursors/pencil.cur";
dword CursorPipette = FROM "cursors/pipette.cur";
dword CursorRectangle = FROM "cursors/rectangle.cur";
dword CursorSelect = FROM "cursors/select.cur";
 
_image image;
 
#include "actions_history.h"
200,6 → 210,9
DrawEditArea();
}
 
if (wrapper.hovered()) SetCursor();
else Cursor.Restore();
 
if (mouse.down) {
if (b_color_gradient.hovered())
|| (b_last_colors.hovered())