Page MenuHomePhabricator
Feed Advanced Search

May 10 2021

kalali committed rMITKebf8757b2828: Make protected members private; remove comments (authored by kalali).
Make protected members private; remove comments
May 10 2021, 10:35 AM
kalali committed rMITK9751f1d41d9c: Use return early to simplify the code structure (authored by kalali).
Use return early to simplify the code structure
May 10 2021, 10:35 AM
kalali committed rMITK1d0306cddd48: Rename vector of data nodes (authored by kalali).
Rename vector of data nodes
May 10 2021, 10:35 AM
kalali committed rMITK1ea1daa42d05: Use "auto" to simplify the code (authored by kalali).
Use "auto" to simplify the code
May 10 2021, 10:35 AM
kalali committed rMITKc1756ccd4526: Remove "levelwindow"-property check (authored by kalali).
Remove "levelwindow"-property check
May 10 2021, 10:35 AM
kalali committed rMITK135694ca36ca: Rename function and invert logic (authored by kalali).
Rename function and invert logic
May 10 2021, 10:35 AM
kalali committed rMITKbcbe13e0349f: Clean class and function (authored by kalali).
Clean class and function
May 10 2021, 10:35 AM
kalali committed rMITKe69fa735b71b: Refactor function names and parameters (authored by kalali).
Refactor function names and parameters
May 10 2021, 10:35 AM
kalali committed rMITK27cfe7f01ba4: Clean comments and remove unnecessary comments (authored by kalali).
Clean comments and remove unnecessary comments
May 10 2021, 10:35 AM

May 7 2021

kalali updated subscribers of T28320: [Segmentation] Region growing does not work if seed point is already inside a segmentation.

I quickly modified the code to see if this works potentially. For this I set m_PaintingPixelValue to 1 for both cases and used the OnMousePressedOutside-function also for a mouse pressed inside:

m_PaintingPixelValue = inside ? 1 : 1;
May 7 2021, 2:38 PM · MITK (v2022.04), Missing Info, Request for Discussion
kalali added a comment to T28320: [Segmentation] Region growing does not work if seed point is already inside a segmentation.

I started looking into this and what I found inside mitk::RegionGrowingTool::OnMousePressed:

if (inside)
      {
        MITK_DEBUG << "Clicked inside segmentation";
        // For now, we're doing nothing when the user clicks inside the segmentation. Behaviour can be implemented via
        // OnMousePressedInside()
        // When you do, be sure to remove the m_PaintingPixelValue check in OnMouseMoved() and OnMouseReleased()
        return;
      }
      else
      {
        MITK_DEBUG << "Clicked outside of segmentation";
        OnMousePressedOutside(nullptr, interactionEvent);
      }

Looking at the file history it doesn't look like that was implemented in MITK at anytime.
So we can actually discuss if we want to allow such a functionality and if, what the obstacles are.

May 7 2021, 2:29 PM · MITK (v2022.04), Missing Info, Request for Discussion

May 6 2021

kalali added a project to T28250: [LevelWindowManager] Different behavior in AutoTopMost case and fallback case: Breaking Change.
IMPORTANT: ClearPropObserverLists has been renamed to ClearPropertyObserverMaps; CreatePropObserverLists has been renamed to CreatePropertyObserverMaps; IgnoreNode has been renamed to HasLevelWindowRenderingMode
May 6 2021, 3:51 PM · Breaking Change, MITK (v2021.10)
kalali closed T26989: [Checklist] GUI test data originates from different sources as Resolved.

Obviously it was not clear what we are expecting here so I will close this task and refer to two new tasks for the specific topics mentioned here:

May 6 2021, 2:12 PM · MITK (v2021.10)
kalali added a parent task for T28481: [Checklist] [Test data] Define publicly available user test data: Unknown Object (Maniphest Task).
May 6 2021, 2:11 PM · MITK, Next Milestone
kalali moved T28481: [Checklist] [Test data] Define publicly available user test data from Backlog to Cycle on the MITK (v2021.10) board.
May 6 2021, 2:11 PM · MITK, Next Milestone
kalali triaged T28481: [Checklist] [Test data] Define publicly available user test data as Normal priority.
May 6 2021, 2:11 PM · MITK, Next Milestone
kalali added a parent task for T28480: [Checklist] [Test data] Define publicly available location to store user test data: Unknown Object (Maniphest Task).
May 6 2021, 2:10 PM · MITK (v2024.06)
kalali moved T28480: [Checklist] [Test data] Define publicly available location to store user test data from Backlog to Cycle on the MITK (v2021.10) board.
May 6 2021, 2:10 PM · MITK (v2024.06)
kalali triaged T28480: [Checklist] [Test data] Define publicly available location to store user test data as Normal priority.
May 6 2021, 2:07 PM · MITK (v2024.06)
kalali moved T28479: [Segmentation] Rethink / reevaluate our existing segmentation tools / algorithms from Backlog to Segmentation on the MITK (v2021.10) board.
May 6 2021, 1:12 PM · MITK (v2024.06)
kalali triaged T28479: [Segmentation] Rethink / reevaluate our existing segmentation tools / algorithms as High priority.
May 6 2021, 10:48 AM · MITK (v2024.06)
kalali created T28479: [Segmentation] Rethink / reevaluate our existing segmentation tools / algorithms.
May 6 2021, 10:48 AM · MITK (v2024.06)

May 5 2021

kalali added a comment to T27507: Check the current behavior of the segmentation tools according static and dynamic 4D segmentation.

@floca I could only find two tasks mentioned here that are not closed, T27872 and T27684, but they are unrelated to the task description. Can this task be closed?

May 5 2021, 1:48 PM · MITK (v2021.10), Missing Info, Restricted Project

May 4 2021

kalali added a comment to T28131: [MultiLabel Segmentation] 3D Threshold tool does not work with multiple labels / layers.

Don't get me wrong - I'm not saying that you or someone "verschlimmbesserte" anything :D I understand and appreciate all the effort that has been made by you.
I am more thinking of a different approach architecture wise - you already mentioned "abstraction levels". For me it seems as if different classes and functions are on the same "level" of doing something but they do it differently - which makes it even harder to grasp the logic behind it. That's why I mentioned "class diagrams". Also, often classes and functions are way too overloaded (e.g. SegTool2D) with way too many responsibilities.

May 4 2021, 6:46 PM · Request for Discussion, MITK (v2022.04)
kalali added a comment to T28131: [MultiLabel Segmentation] 3D Threshold tool does not work with multiple labels / layers.

Ok I have to admit: The whole code base that is related to this topic is totally unclear to me and I find it very hard to understand what is going on. I don't know why the code is like that but I would highly suggest to simplify and clean the relevant classes and functions as much as possible before it becomes problematic (e.g. more complex cases with 4D-dynamic segmentations with multi-layer multi-label segmentation masks or similar). Also, I highly doubt that this is future proof when it comes to changes in the following years so as already mentioned in my last comment: I think we really need to discuss this topic - maybe it helps to have a clearer picture by creating (class) diagrams with relations etc.

May 4 2021, 1:58 PM · Request for Discussion, MITK (v2022.04)
kalali added a comment to T28131: [MultiLabel Segmentation] 3D Threshold tool does not work with multiple labels / layers.

Thanks for the clarification. I will look into the FeedbackCntourTool and ContourModelUtils and see if I can make sense of all this :D
Depending on what I find out I think we should really talk about the future of the (multilabel) segmentation modules / plugins and how we can simplify the code base (generalize it) and remove redundancy as well as decouple classes etc.

May 4 2021, 11:41 AM · Request for Discussion, MITK (v2022.04)

May 3 2021

kalali edited projects for T28294: [Documentation] std multiwidget does show a blank page on F1, added: MITK (v2021.10), Missing Info; removed Next Milestone, MITK.

I am not sure what is exactly done here to reproduce. To get any help page I have to click on a plugin anyway. How would I provoke a blank page?
When I use F1 while the Standard Display is activated I get a blank page for the Standard Display. If that's what is meant than we need to reconsider how to display this specific help page: There is a description of the "four window view" inside src\Plugins\org.mitk.gui.qt.ext\documentation\UserManual\MITKUserManual.dox but we can not move it to the stdmultiwidgeteditor-plugin as it contains more information about the workbench, not only about the standard display.

May 3 2021, 4:37 PM · Restricted Project, MITK (v2022.04), Missing Info
kalali added a comment to T28206: [Image Statistics] Renaming segmentation or planar figure based ROI nodes breaks histogram.

I tried to reproduce this issue and found the following:
With the changes in T28211 @floca mentioned, there is no legend anymore m_Controls.chartWidget->SetShowLegend(false);
Showing this legend again displays "histogram" as the label name - not even the original segmentation node name. Now when I add another segmentation and add it to the statistics, the histogram is completely removed (it's calculated but the widget does not provide any space for the histogram anymore).

May 3 2021, 4:19 PM · MITK (v2024.06)
kalali added a comment to T28131: [MultiLabel Segmentation] 3D Threshold tool does not work with multiple labels / layers.

@floca I sarted looking into this and found out the following:
The threshold tool used is QmitkBinaryThresholdToolGUIBase, which is a subclass of QmitkAutoSegmentationToolGUIBase. This class uses the AutoSegmentationTool, a subclass of the mitkTool. As far as I can see the target node that will be connected with this tool upon activating the tool is done inside mitk::AutoSegmentationTool::GetTargetSegmentationNode().
However, there is no information about any layer or even the information that this can be used with multilabel segmentation nodes.

May 3 2021, 2:47 PM · Request for Discussion, MITK (v2022.04)
kalali claimed T28250: [LevelWindowManager] Different behavior in AutoTopMost case and fallback case.
May 3 2021, 12:58 PM · Breaking Change, MITK (v2021.10)
kalali added a revision to T28250: [LevelWindowManager] Different behavior in AutoTopMost case and fallback case: Unknown Object (Differential Revision).
May 3 2021, 12:56 PM · Breaking Change, MITK (v2021.10)

Apr 23 2021

kalali moved T28462: [Conan] Build MatchPoint with ITK 5.1.0 recipe from Doing to Backlog on the MatchPoint board.
Apr 23 2021, 2:50 PM · MatchPoint, Restricted Project
kalali moved T28462: [Conan] Build MatchPoint with ITK 5.1.0 recipe from Restricted Project Column to Restricted Project Column on the Restricted Project board.
Apr 23 2021, 2:50 PM · MatchPoint, Restricted Project
kalali placed T28462: [Conan] Build MatchPoint with ITK 5.1.0 recipe up for grabs.

I will put this up for grabs as it does not make sense to start a new project now. Personally I will investigate further after the Conan evaluation report has been written.

Apr 23 2021, 2:50 PM · MatchPoint, Restricted Project
kalali added a comment to T28462: [Conan] Build MatchPoint with ITK 5.1.0 recipe.

One long term solution would also be to create an own Litmus Conan recipe and use this external Litmus package inside MatchPoint.

Apr 23 2021, 1:24 PM · MatchPoint, Restricted Project
kalali added a comment to T28462: [Conan] Build MatchPoint with ITK 5.1.0 recipe.

I was trying to test if I can forward the ITK_USE_FILE variable inside the ExternalProject call to Litmus, as we did in the change for the CMAKE_PREFIX_PATH. I realized that neither the CMAKE_PREFIX_PATH nor the ITK_USE_FILE is correctly forwarded and accessible inside Litmus CMake configuration.

Apr 23 2021, 1:13 PM · MatchPoint, Restricted Project
kalali moved T28462: [Conan] Build MatchPoint with ITK 5.1.0 recipe from Backlog to Doing on the MatchPoint board.
Apr 23 2021, 12:08 PM · MatchPoint, Restricted Project
kalali moved T28462: [Conan] Build MatchPoint with ITK 5.1.0 recipe from Restricted Project Column to Restricted Project Column on the Restricted Project board.
Apr 23 2021, 12:07 PM · MatchPoint, Restricted Project
kalali added a comment to T28462: [Conan] Build MatchPoint with ITK 5.1.0 recipe.

I started looking into this and some changes need to be made in order to get some errors out of the way:

  • Conan-center recipes are built without CMake find / config files, as mentioned here: In short: Conan creates own find / config files so they are removed from the original package.
Apr 23 2021, 12:07 PM · MatchPoint, Restricted Project
kalali triaged T28462: [Conan] Build MatchPoint with ITK 5.1.0 recipe as Normal priority.
Apr 23 2021, 10:20 AM · MatchPoint, Restricted Project

Apr 22 2021

kalali moved T26989: [Checklist] GUI test data originates from different sources from Tests/Checklists to Cycle on the MITK (v2021.10) board.
Apr 22 2021, 12:18 PM · MITK (v2021.10)
kalali raised the priority of T26989: [Checklist] GUI test data originates from different sources from Normal to High.

I set the priority to high because we defined that having appropriate data at a reachable location is one of the most pressing issues when it comes to manual GUI tests.

Apr 22 2021, 12:11 PM · MITK (v2021.10)
kalali added a parent task for T26989: [Checklist] GUI test data originates from different sources: Unknown Object (Maniphest Task).
Apr 22 2021, 12:06 PM · MITK (v2021.10)
kalali moved T26989: [Checklist] GUI test data originates from different sources from Backlog to Tests/Checklists on the MITK (v2021.10) board.
Apr 22 2021, 12:06 PM · MITK (v2021.10)
kalali edited projects for T26989: [Checklist] GUI test data originates from different sources, added: MITK (v2021.10); removed Request for Discussion, MITK.
Apr 22 2021, 12:06 PM · MITK (v2021.10)

Apr 7 2021

kalali moved T27807: [MultiLabel Segmentation] Inspection of module and plugin from Backlog to Segmentation on the MITK (v2021.10) board.
Apr 7 2021, 12:29 PM · MITK (v2024.06)
kalali edited projects for T27807: [MultiLabel Segmentation] Inspection of module and plugin, added: MITK (v2021.10); removed Next Milestone, MITK.
Apr 7 2021, 12:29 PM · MITK (v2024.06)
kalali edited projects for T28250: [LevelWindowManager] Different behavior in AutoTopMost case and fallback case, added: MITK (v2021.10); removed Next Milestone, MITK.
Apr 7 2021, 12:28 PM · Breaking Change, MITK (v2021.10)
kalali moved T28108: [Release Checklists] Prepare release checklists from Backlog to Tests/Checklists on the MITK (v2021.10) board.
Apr 7 2021, 12:26 PM · MITK
kalali edited projects for T28108: [Release Checklists] Prepare release checklists, added: MITK (v2021.10); removed MITK.
Apr 7 2021, 12:26 PM · MITK
kalali moved T27711: Rename segmentation image selection label from Backlog to Segmentation on the MITK (v2021.10) board.
Apr 7 2021, 12:25 PM · MITK (v2021.10)
kalali moved T27713: [Segmentation] Disable "New" button when no image is selected from Backlog to Segmentation on the MITK (v2021.10) board.
Apr 7 2021, 12:24 PM · MITK (v2021.10), Request for Discussion
kalali moved T27872: [Segmentation] Region Growing 3D GUI does not provide a "Overwrite" checkbox from Backlog to Segmentation on the MITK (v2021.10) board.
Apr 7 2021, 12:24 PM · MITK (v2022.10), Cleared
kalali moved T28181: [Segmentation] Should warning messages be passed on to the UI? from Backlog to Segmentation on the MITK (v2021.10) board.
Apr 7 2021, 12:24 PM · MITK (v2024.06)
kalali renamed T28262: TimeGeometry inconsistent documentation and implementation of time bounds and checks from TimeGeometry inconsistent documentation and implmentation of time bounds and checks to TimeGeometry inconsistent documentation and implementation of time bounds and checks.
Apr 7 2021, 11:24 AM · MITK (v2024.06)
kalali edited projects for T27872: [Segmentation] Region Growing 3D GUI does not provide a "Overwrite" checkbox, added: MITK (v2021.10); removed Next Milestone, MITK.
Apr 7 2021, 11:12 AM · MITK (v2022.10), Cleared
kalali edited projects for T18014: write tool interaction tests for segmentation, added: MITK (v2021.10); removed Next Milestone, MITK.
Apr 7 2021, 11:11 AM · MITK (v2024.06), Bugzilla
kalali edited projects for T28358: Data Manager context menu items added multiple times for multi-selections, added: MITK (v2021.10); removed Next Milestone, MITK.
Apr 7 2021, 11:03 AM · MITK (v2021.10)
kalali edited projects for T27711: Rename segmentation image selection label, added: MITK (v2021.10); removed Next Milestone, MITK.
Apr 7 2021, 11:02 AM · MITK (v2021.10)
kalali edited projects for T28181: [Segmentation] Should warning messages be passed on to the UI?, added: MITK (v2021.10); removed Next Milestone, MITK.
Apr 7 2021, 11:01 AM · MITK (v2024.06)
kalali edited projects for T27713: [Segmentation] Disable "New" button when no image is selected, added: MITK (v2021.10); removed MITK.
Apr 7 2021, 11:00 AM · MITK (v2021.10), Request for Discussion
kalali updated subscribers of T26878: Opacity / transparency of a data node cannot be changed anymore.

Does not seem to happen anymore. Can somebody confirm, e.g. @kislinsk?

Apr 7 2021, 10:59 AM · MITK

Apr 2 2021

kalali added a project to T28428: Re-enable code coverage testing in MITK CI: CI.
Apr 2 2021, 11:08 AM · Auto-closed, CI, MITK

Mar 3 2021

kalali edited projects for T26485: [Segmentation] PACS mode is active while segmentation is drawn, added: Request for Discussion, Next Milestone; removed Restricted Project.

Also when changing the interaction mode (PACS <-> MITK) while the segmentation tool (e.g. Add) is active, the changed interaction mode will overwrite the segmentation interaction and the render window changes again while drawing the segmentation.

Mar 3 2021, 11:53 AM · MITK (v2021.10)

Mar 2 2021

kalali committed rMITK7014777eedae: Preserve color selection (authored by kalali).
Preserve color selection
Mar 2 2021, 9:11 AM
kalali committed rMITK372746b5a2ae: Initialize color member with red (authored by kalali).
Initialize color member with red
Mar 2 2021, 9:11 AM
kalali committed rMITK93758e9b6fe4: Correctly initialize the color selection dialog (authored by kalali).
Correctly initialize the color selection dialog
Mar 2 2021, 9:11 AM

Feb 24 2021

kalali moved T27713: [Segmentation] Disable "New" button when no image is selected from Backlog to MITK Meeting on the Request for Discussion board.
Feb 24 2021, 9:42 AM · MITK (v2021.10), Request for Discussion
kalali added a project to T27713: [Segmentation] Disable "New" button when no image is selected: Request for Discussion.
Feb 24 2021, 9:42 AM · MITK (v2021.10), Request for Discussion
kalali moved T26959: [Segmentation] Newly created LabelSet segmentation is not displayed as "outline binary" from Backlog to MITK Meeting on the Request for Discussion board.
Feb 24 2021, 9:42 AM · MITK (v2024.06), Checklist, Request for Discussion

Feb 18 2021

kalali edited projects for T27713: [Segmentation] Disable "New" button when no image is selected, added: MITK; removed MITK (v2021.02).

I looked into it and I have the impression that there is a lot of unnecessary complexity created in order to generate a valid UI state. The problem, as far as I can see, lies in the overuse of if-statements and having functions that have way to many responsibilities. This is a typical "clean code" task and I suggest to go through the whole QmitkSegmentationView.cpp file and apply some best practices of writing clean code.
But since it is not clear how much effort we want to put into it (thinking of T28142), it might be wise to not work on this right now but to use a general refactoring task (parent task) to fix the mentioned bug.
I advise also to have a look https://phabricator.mitk.org/file/data/7bghshzurxwupnipv3dl/PHID-FILE-n2hwm6xv2mil3ola47sq/QtStateMachineFramework.pdf.

Feb 18 2021, 4:18 PM · MITK (v2021.10), Request for Discussion

Feb 16 2021

kalali edited projects for T26969: [Segmentation] New segmentation dialog: Change color twice and aborting the second time chages color to red, added: MITK; removed MITK (v2021.02).
Feb 16 2021, 8:47 PM · MITK
kalali added a revision to T26969: [Segmentation] New segmentation dialog: Change color twice and aborting the second time chages color to red: Unknown Object (Differential Revision).
Feb 16 2021, 7:18 PM · MITK
kalali claimed T26969: [Segmentation] New segmentation dialog: Change color twice and aborting the second time chages color to red.
Feb 16 2021, 7:14 PM · MITK
kalali edited projects for T26959: [Segmentation] Newly created LabelSet segmentation is not displayed as "outline binary", added: Request for Discussion, MITK; removed MITK (v2021.02).

It seems as if datanode->GetBoolProperty("binary", binary, renderer) inside mitkImageVtkMapper2D always results in binary being false. This might be true for our LabelSet images, but the properties view still shows the property binary as true, e.g. for segmentations created with the classic segmentation view.

Feb 16 2021, 6:07 PM · MITK (v2024.06), Checklist, Request for Discussion
kalali triaged T28315: [Selection concept] Provide preference page option to show / hide helper nodes as Normal priority.
Feb 16 2021, 5:01 PM · Request for Discussion, MITK (v2021.10)

Feb 12 2021

kalali edited projects for T28138: [MultiLabel Segmentation] Add tests for the LabelSetImage, added: MITK; removed MITK (v2021.02).
Feb 12 2021, 12:49 PM · MITK (v2022.10)
kalali placed T28130: Extend "Checkliste MultiLabel Segmentierung – 3D Segmentierung" up for grabs.
Feb 12 2021, 12:47 PM · MITK (v2022.04)
kalali edited projects for T26956: LevelWindow slider does not expand the level/window scale, added: MITK; removed MITK (v2021.02).
Feb 12 2021, 12:37 PM · MITK
kalali edited projects for T27907: Extend "Checkliste Documentation", added: MITK; removed MITK (v2021.02).
Feb 12 2021, 12:36 PM · Auto-closed, MITK, Cleared
kalali edited projects for T28265: [Checklist] Overhaul ViewNavigator checklists to be in line with the latest changes to the checklists, added: MITK; removed MITK (v2021.02).
Feb 12 2021, 12:36 PM · MITK (v2022.04)
kalali placed T27716: Extend "Checkliste Segmentierung – Manuelle Segmentierung / 2D Segmentierung" up for grabs.
Feb 12 2021, 12:30 PM · MITK (v2022.04), Cleared
kalali lowered the priority of T27737: Extend "Checkliste Segmentierung – Optionen" from High to Normal.
Feb 12 2021, 12:29 PM · MITK (v2022.04), Cleared
kalali placed T27850: Extend "Checkliste Segmentierung – 3D Segmentierung" up for grabs.
Feb 12 2021, 12:29 PM · MITK (v2022.04), Cleared
kalali placed T27873: Extend "Checkliste Segmentierung – Interpolation" up for grabs.
Feb 12 2021, 12:28 PM · MITK (v2022.04), Cleared
kalali placed T27906: Extend "Checkliste Segmentierung – Utilities" up for grabs.
Feb 12 2021, 12:28 PM · MITK (v2022.04), Cleared
kalali lowered the priority of T28110: Extend checklists for multilabel segmentation view from High to Normal.
Feb 12 2021, 12:27 PM · MITK (v2022.04)
kalali placed T28111: Extend "Checkliste MultiLabel Segmentierung – 2D Segmentierung" up for grabs.
Feb 12 2021, 12:26 PM · MITK (v2022.04)
kalali renamed T28108: [Release Checklists] Prepare release checklists from [Release Checklists] Prepare release checklists for Release 2021 to [Release Checklists] Prepare release checklists.
Feb 12 2021, 12:25 PM · MITK
kalali lowered the priority of T28111: Extend "Checkliste MultiLabel Segmentierung – 2D Segmentierung" from High to Normal.
Feb 12 2021, 12:24 PM · MITK (v2022.04)
kalali lowered the priority of T28130: Extend "Checkliste MultiLabel Segmentierung – 3D Segmentierung" from High to Normal.
Feb 12 2021, 12:24 PM · MITK (v2022.04)
kalali lowered the priority of T28132: Extend "Checkliste MultiLabel Segmentierung – Interpolation" from High to Normal.
Feb 12 2021, 12:23 PM · MITK (v2022.04)
kalali lowered the priority of T28133: Extend "Checkliste MultiLabel Segmentierung – Utilities" from High to Normal.
Feb 12 2021, 12:23 PM · MITK (v2022.04)
kalali placed T28136: Extend "Checkliste MultiLabel Segmentierung – Optionen" up for grabs.
Feb 12 2021, 12:22 PM · MITK (v2022.04)
kalali placed T28191: Refactor and extend LevelWindow unit tests up for grabs.
Feb 12 2021, 12:22 PM · Auto-closed, MITK
kalali placed T26988: [Checklist] LevelWindow checklist does not provide explicit expected results for sufficient verification up for grabs.
Feb 12 2021, 12:17 PM · MITK (v2024.06)
kalali lowered the priority of T28204: Refactor LevelWindowManagerTest from High to Normal.
Feb 12 2021, 12:12 PM · MITK (v2021.10)
kalali edited projects for T28204: Refactor LevelWindowManagerTest, added: MITK; removed MITK (v2021.02).
Feb 12 2021, 12:11 PM · MITK (v2021.10)

Feb 11 2021

kalali added a comment to T28302: MITK CI jobs for Kaapana.

Following this, are there some requirements that need to be specified here T28280?

Feb 11 2021, 3:04 PM · CI, MITK

Feb 5 2021

kalali placed T28265: [Checklist] Overhaul ViewNavigator checklists to be in line with the latest changes to the checklists up for grabs.
Feb 5 2021, 11:40 AM · MITK (v2022.04)