Re-position version string slightly.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2835 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Angus Leeming 2001-10-03 09:06:28 +00:00
parent f360c39690
commit 31baf131cb
2 changed files with 9 additions and 5 deletions

View File

@ -1,4 +1,8 @@
2001-10-01 Angus Leeming <a.leeming@ic.ac.uk>
2001-10-03 Angus Leeming <a.leeming@ic.ac.uk>
* WorkArea.C (c-tor): re-position version string slightly.
2001-10-02 Angus Leeming <a.leeming@ic.ac.uk>
* BufferView_pimpl.C (buffer): remove call to WorkArea::show() and
revert to previous code.

View File

@ -119,17 +119,17 @@ WorkArea::WorkArea(int xpos, int ypos, int width, int height)
fl_set_pixmapbutton_focus_outline(obj, 3);
fl_set_object_boxtype(obj, FL_NO_BOX);
int const text_x = splash_x + 248;
int const text_y = splash_y + 265;
int const text_x = splash_x + 260;
int const text_y = splash_y + 255;
splash_text_ = obj =
fl_add_text(FL_NORMAL_TEXT, text_x, text_y, 170, 16,
fl_add_text(FL_NORMAL_TEXT, text_x, text_y, 160, 16,
LYX_VERSION);
fl_set_object_lsize(obj, FL_NORMAL_SIZE);
fl_mapcolor(FL_FREE_COL2, 0x2b, 0x47, 0x82);
fl_mapcolor(FL_FREE_COL3, 0xe1, 0xd2, 0x9b);
fl_set_object_color(obj, FL_FREE_COL2, FL_FREE_COL2);
fl_set_object_lcol(obj, FL_FREE_COL3);
fl_set_object_lalign(obj, FL_ALIGN_CENTER|FL_ALIGN_INSIDE);
fl_set_object_lalign(obj, FL_ALIGN_LEFT|FL_ALIGN_INSIDE);
fl_set_object_lstyle(obj, FL_BOLD_STYLE);
}