Daniel Kochmanski
Daniel Kochmanski
Steps to reproduce: ``` (asdf:load-system 'clim-pdf) (clim-pdf:with-output-to-pdf-stream (stream "/tmp/foo.pdf") (format stream "HIę!~%")) ``` text-size-in-font takes the char-code and tries to find the character name in the array `*iso-latin-1-symbolic-names*`, it is...
when a pattern is used as an ink for draw text, no text is drawn, see: ```common-lisp (in-package clim-user) (let* ((ink1 (make-pattern (make-array '(4 4) :initial-contents `((0 0 1 1)...
The condition `transformation-underspecified` is specified to accept the initarg `:points`, while our implementation accepts `:coords`. sbcl quietly ignored incorrect initarg (maybe this is conforming given that condition-class is not a...
- arcs are drawn in line with x/y axis - merge-duplicated-nodes new option which does not merge, but doesn't expand duplicates either - [when we have expandable output records] toggle...
Currently we require that the `:port` argument is supplied when the sheet is created, however it would be more robust to set a port when the sheet is adopted (from...
It should return a position where the processing was terminated ``` (clim:accept-from-string 'integer " 34 asdf d") ;; 34 integer 11 ``` the third value should be 3, not 11.
Steps to reproduce: 1. define a command 2. confirm that selecting argument doesn't activate a command, 3. redefine command with argument's `:gesture :select` 4. confirm that selecting argument does activate...
Right now when we write asynchronously to a stream output records get corrupted. Issue is reported here: https://github.com/McCLIM/McCLIM/issues/315 This is opened as a separate task, because it is more an...
That issue was introduced when fixing this bug: https://github.com/McCLIM/McCLIM/issues/737 The function `invoke-with-output-to-output-record` has currently this definition: ``` (defmethod invoke-with-output-to-output-record ((stream output-recording-stream) continuation record-type &rest initargs) (stream-close-text-output-record stream) (let ((new-record (apply...
McCLIM input (interactor, listener) are set to the english layout (even if other layout is set on the X window system), so the user can't insert characters like "łęść". If...