Don
Don
@lwmirkk - yes, great idea. I was attempting to do this but had one logic twist that your suggestion helped to clarify. The list filter must be cleared prior to...
Thanks @kgilmer ``` gsettings set org.regolith-linux.ilia icon-size 0 ``` This sped it up a bit, but I think the rofi/drun method was way faster with the same basic functionality. Thank...
I found this setting for I3... https://i3wm.org/docs/userguide.html#_popups_during_fullscreen_mode Suggest making `leave_fullscreen` the default in the regolith/i3 config as `smart` mode does not bounce of out of full screen when a new...
Hi @kgilmer, This may be an issue with I3... the `popup_during_fullscreen` seems to work for popup windows like this: 1. Open a terminal full screen, MOD-ENTER, MOD-F 2. Attempt to...
UPDATE: there is some mismatch between the way BIP renders the initial value in the `best_in_place` method vs. rendering the value on select. Offending line 25 in helper.rb: ``` display_value...
Generally I would consider protecting the destruction of the entries as a higher level responsibility for the application. If a credit/debit amount requires an entry to be valid, then the...
Our application acts as an intermediate between Quickbooks, so we need the flexibility to get the accounting transactions correct (i.e. delete entries and the associated amounts) before exporting them to...
Same here.
I was having the same issue, and was able to fix it by adding this to the controller... ``` ruby def update ... respond_to do |format| ... format.json { respond_with_bip...
I am receiving this error also, trying to use best_in_place to edit a hash of key/value pairs. :+1: utils.rb ``` ruby def model_name_from_record_or_class(record_or_class) (record_or_class.is_a?(Class) ? record_or_class : convert_to_model(record_or_class).class).model_name end ```...