scale the file selector UI with the DPI, the region size can still be wrong though.

This commit is contained in:
Campbell Barton 2011-06-05 10:05:13 +00:00
parent 1d236097ab
commit 24292793a0
2 changed files with 6 additions and 8 deletions

@ -74,12 +74,6 @@
#include "file_intern.h" // own include
/* ui geometry */
#define IMASEL_BUTTONS_HEIGHT 40
#define IMASEL_BUTTONS_MARGIN 6
#define TILE_BORDER_X 8
#define TILE_BORDER_Y 8
/* button events */
enum {
B_FS_DIRNAME,

@ -43,8 +43,12 @@ struct SpaceFile;
struct ARegion *file_buttons_region(struct ScrArea *sa);
/* file_draw.c */
#define TILE_BORDER_X 8
#define TILE_BORDER_Y 8
#define TILE_BORDER_X (UI_UNIT_X/4)
#define TILE_BORDER_Y (UI_UNIT_Y/4)
/* ui geometry */
#define IMASEL_BUTTONS_HEIGHT (UI_UNIT_Y*2)
#define IMASEL_BUTTONS_MARGIN (UI_UNIT_Y/6)
void file_draw_buttons(const bContext *C, ARegion *ar);
void file_calc_previews(const bContext *C, ARegion *ar);