Yes, your intuition is correct.
When G contains edges of different capacities, increasing the capacity of every edge by 1 might change the minimum cut. This is easily demonstrated by example, as shown below. The minimum cut (in red) has capacity 3. Increasing the capacity of each edge increases that cut to 6. So the connection from S to A becomes the new minimum cut with a capacity of 5.

When all the edges have the same capacity, increasing the capacity of every edge by 1 will not change the minimum cut. The basic idea behind the proof is that the capacity of a cut is nc
where n
is the number of edges cut, and c
is the capacity of each edge. Since c
is a constant, the minimum cut is the cut with minimum n
. We'll refer to that minimum as N
.
Now if the capacity of each edge is increased by 1, then the new capacity of each cut is n(c+1)
. Hence, the new capacity of the cut that used to be the minimum cut is N(c+1)
. Suppose a cut with capacity larger than N(c+1)
exists: since all edges have weight c+1
, such a cut must be an M
-edge cut, for some M > N
. But then in the original graph this same cut would have capacity Mc > Nc
, contradicting the assumption that the N
-edge cut is optimal there, so no such M
-edge cut can exist, meaning that the N
-edge cut (now with capacity N(c+1)
) remains optimal in the new graph.