mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-12-23 20:46:50 +03:00
Stop the throbber trying to draw on download and 401-login windows.
svn path=/trunk/netsurf/; revision=5382
This commit is contained in:
parent
7d93524509
commit
d75ece0d71
@ -59,7 +59,7 @@ struct gui_download_window {
|
||||
Object *objects[OID_LAST];
|
||||
struct Gadget *gadgets[GID_LAST];
|
||||
struct nsObject *node;
|
||||
ULONG pad[2];
|
||||
ULONG pad[4];
|
||||
BPTR fh;
|
||||
uint32 size;
|
||||
uint32 downloaded;
|
||||
@ -70,9 +70,10 @@ struct gui_window {
|
||||
Object *objects[OID_LAST];
|
||||
struct Gadget *gadgets[GID_LAST];
|
||||
struct nsObject *node;
|
||||
bool redraw_required;
|
||||
struct List *tab_bw_list;
|
||||
struct browser_window *bw;
|
||||
bool redraw_required;
|
||||
int throbber_frame;
|
||||
struct List *tab_bw_list;
|
||||
struct BitMap *bm;
|
||||
struct RastPort rp;
|
||||
struct Layer_Info *layerinfo;
|
||||
@ -84,7 +85,6 @@ struct gui_window {
|
||||
union content_msg_data *redraw_data;
|
||||
browser_mouse_state mouse_state;
|
||||
browser_mouse_state key_state;
|
||||
int throbber_frame;
|
||||
ULONG throbber_update_count;
|
||||
int c_x;
|
||||
int c_y;
|
||||
|
@ -23,8 +23,8 @@ struct gui_login_window {
|
||||
Object *objects[OID_LAST];
|
||||
struct Gadget *gadgets[GID_LAST];
|
||||
struct nsObject *node;
|
||||
ULONG pad[2];
|
||||
struct browser_window *bw;
|
||||
ULONG pad[3];
|
||||
char *url;
|
||||
char *realm;
|
||||
char *host;
|
||||
|
Loading…
Reference in New Issue
Block a user