Changeset 2807


Ignore:
Timestamp:
Nov 22, 2017, 9:47:22 PM (7 years ago)
Author:
Andreas Schnellbacher
Message:
  • Fixed: After creating a mark with the mouse, in a special situation, the highlighting got lost. This was caused by a workaround to get the last column marked with the cursor. The serialization for unhighlighting and re-highlighting hasn't worked reliable.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/src/netlabs/macros/mouse.e

    r2797 r2807  
    707707      -- Query keyword highlighting state (windowmessage returns 0 or 2)
    708708      -- from defc qparse (commented out) in STDCTRL.E:
    709       saved_toggle = windowmessage( 1,  getpminfo(EPMINFO_EDITFRAME),
     709      saved_toggle = windowmessage( 1, getpminfo( EPMINFO_EDITFRAME),
    710710                                    5505,          -- EPM_EDIT_KW_QUERYPARSE
    711711                                    0,
     
    726726            -- (The array var fid'.kwfile' is set by defc toggle_parse in STDCTRL.E)
    727727            kwfilename = GetAVar( fid'.kwfile')
    728             'toggle_parse' 0
     728            call windowmessage( 0, getpminfo( EPMINFO_EDITFRAME),
     729                                5502,               -- EPM_EDIT_TOGGLEPARSE
     730                                0,
     731                                put_in_buffer( fid kwfilename))
     732            -- toggle_parse here would be simetimes processed too late, after
     733            -- switching highlighting back on, therefore avoid a command here:
     734            --'toggle_parse' 0
    729735         endif
    730736
     
    738744         if saved_toggle <> 0 then
    739745            -- from defc toggle_parse in STDCTRL.E:
    740             call windowmessage( 0,  getpminfo( EPMINFO_EDITFRAME),
     746            call windowmessage( 0, getpminfo( EPMINFO_EDITFRAME),
    741747                                5502,               -- EPM_EDIT_TOGGLEPARSE
    742748                                1,
    743749                                put_in_buffer( fid kwfilename))
    744 
     750            -- toggle_parse here would lead to wrong highlighting colors and mode:
    745751            --'toggle_parse' 1 kwfilename
    746752         endif
Note: See TracChangeset for help on using the changeset viewer.