Changes between Initial Version and Version 1 of Ticket #9609, comment 3
- Timestamp:
- Nov 13, 2012, 1:26:08 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #9609, comment 3
initial v1 1 1 * Created branches t/9609@cksource and t/9609@tests-v4. 2 2 * Ported v3 solution with test cases. 3 4 I'm a little bit concerned about the expected behavior of "insert column before" for the following case: 5 6 {{{ 7 +-----+------+ 8 | 1.1 | 1.2^ | 9 +-----+------+ 10 | 2.1 | 11 +-----+ 12 }}} 13 14 How it works now: 15 {{{ 16 +-----+--------+------+ 17 | 1.1 | | 1.2^ | 18 +-----+--------+------+ 19 | 2.1 | 20 +-----+ 21 }}} 22 23 How it should look like in my opition: 24 {{{ 25 +-----+--------+------+ 26 | 1.1 | | 1.2^ | 27 +-----+--------+------+ 28 | 2.1 | | 29 +-----+--------+ 30 }}} 31 32 Most likely this is not an issue but it brings some confusion. Maybe this is a good moment to re-think this behavior. 3 * Created #9614 ticket for "insert column before" behavior concerns.