You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 9, 2021. It is now read-only.
The refresh button is only enabled when the CanModify condition is met. But refreshing can be done at no risk even if datas are readonly.
I suggest this patch (line 200) to correct that meaningless limitation :
Buttons[nbRefresh].Enabled:=CanModify;
Buttons[nbRefresh].Enabled:=Enabled and FDataLink.Active and not FDataLink.Editing;
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
The refresh button is only enabled when the CanModify condition is met. But refreshing can be done at no risk even if datas are readonly.
I suggest this patch (line 200) to correct that meaningless limitation :
The text was updated successfully, but these errors were encountered: