Update: This behaviour happens only if cell grouping is set to Manual (similar to another problem).
When an output cell is generated by e.g. dynamical object, the output is printed faded out. This behaviour was introduced in v10 with multiple undo to indicate if an output cell is decoupled from its input cell due to manually editing the input cell. This, however, is an unwanted behaviour for some cases; consider this example:
SetOptions[$FrontEndSession, CellGrouping -> Manual];
g = Graphics[{Red, Disk[], Green, Rectangle[{0, 0}, {2, 2}],
Blue, Disk@{2, 2}}, ImageSize -> 100];
Print@g;
Button["Print", Print@g]

When the button is pushed, it generates the bottom output cell that has a faded look by default. A large amount of text (instead of graphics) is hard to read when faded.
How to print output from within a dynamical expression so that it does not look faded? Needless to say, I need the resulting cell to be an output cell (for example, it is removed when the Delete All Output menuitem is selected). Is there an option that controls this behaviour?
(Version is 10.0.2.0, Windows 7 (64-bit))
CellGrouping->Manualtriggers the behaviour at your end? – István Zachar Apr 03 '15 at 09:50init.m. Also, when I've set it toAutomaticglobally and opened a notebook with previously set and saved cell grouping, it was gone and had to either regroup cells, or close and open the nb after resetting FE-level grouping to manual (e.g. after version upgrades where my settings were not kept).... – István Zachar Apr 06 '15 at 17:38CellGrouping->Manual. What the Cell->Cell Grouping->Group Together menu command does is to apply a style which causes automatic grouping to work in exactly the way you want. And then the Group Normally menu command just clears that style information. While this is not strictly as powerful as manual grouping, it is sufficiently flexible to handle pretty much every real-world concern. And because it's done via styles, it's much less fragile than manual grouping, which is the source of lots of bugs. – John Fultz Apr 13 '15 at 18:03Manualwas a frozen bad habit. Thanks for the help, setting was removed from myinit.m! – István Zachar Apr 14 '15 at 07:38