forked from KolibriOS/kolibrios
ftpc:
- reduce log font size - refresh local directory list after download git-svn-id: svn://kolibrios.org@7487 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
parent
c0027f240b
commit
89001f353c
@ -1038,7 +1038,7 @@ tedit0:
|
|||||||
.fun_save_err dd 0 ;+238
|
.fun_save_err dd 0 ;+238
|
||||||
.increase_size dd 1000 ;+242
|
.increase_size dd 1000 ;+242
|
||||||
.ptr_free_symb dd ? ;+246
|
.ptr_free_symb dd ? ;+246
|
||||||
.font_size dd 16 shl 24 ; +250
|
.font_size dd 16 shl 16 ; +250
|
||||||
|
|
||||||
align 4
|
align 4
|
||||||
scrol_w1:
|
scrol_w1:
|
||||||
|
@ -228,6 +228,14 @@ data_loop:
|
|||||||
.done:
|
.done:
|
||||||
icall eax, interface_addr, interface.print, str_close
|
icall eax, interface_addr, interface.print, str_close
|
||||||
mcall close, [datasocket]
|
mcall close, [datasocket]
|
||||||
|
|
||||||
|
; refresh local directory list if in gui
|
||||||
|
cmp [operation], OPERATION_RETR
|
||||||
|
jne @f
|
||||||
|
cmp [interface_addr], gui
|
||||||
|
jne @f
|
||||||
|
call populate_local_tree_list
|
||||||
|
@@:
|
||||||
mov [operation], OPERATION_NONE
|
mov [operation], OPERATION_NONE
|
||||||
jmp wait_for_servercommand
|
jmp wait_for_servercommand
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user